当前位置: 首页>>代码示例>>C#>>正文


C# TransactionResponse.getMessageType方法代码示例

本文整理汇总了C#中TransactionResponse.getMessageType方法的典型用法代码示例。如果您正苦于以下问题:C# TransactionResponse.getMessageType方法的具体用法?C# TransactionResponse.getMessageType怎么用?C# TransactionResponse.getMessageType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TransactionResponse的用法示例。


在下文中一共展示了TransactionResponse.getMessageType方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: displayMessageToTheUser

    private void displayMessageToTheUser(TransactionResponse response, bool noNotification)
    {
        if (noNotification)
        {
            InfoDIV.Visible = true;
            lblInformationMsg.Text = "You have no notification sent to you";
            return;
        }

        switch (response.getMessageType())
        {
            case TransactionResponse.SeverityLevel.SUCESS:
                SucessDIV.Visible = true;
                lblErrorMsg.Text = response.getMessage();
                break;
            case TransactionResponse.SeverityLevel.INFO:
                InfoDIV.Visible = true;
                lblInformationMsg.Text = response.getMessage();
                break;
            case TransactionResponse.SeverityLevel.WARNING:
                WarnDIV.Visible = true;
                lblWarningMsg.Text = response.getMessage() + response.getErrorCode() ;
                break;
            case TransactionResponse.SeverityLevel.ERROR:
                ErroroDIV.Visible = true;
                lblErrorMsg.Text = response.getMessage() + response.getErrorCode();
                break;
        }
    }
开发者ID:jLeta,项目名称:HN_HR_1.0,代码行数:29,代码来源:user-notification.aspx.cs

示例2: displayMessageToTheUser

    private void displayMessageToTheUser(TransactionResponse response)
    {
        clearMsgPanel();

        switch (response.getMessageType())
        {
            case TransactionResponse.SeverityLevel.SUCESS:
                msgPanel.Visible = true;
                SucessDIV.Visible = true;
                lblSuccessMessage.Text = response.getMessage();
                break;
            case TransactionResponse.SeverityLevel.INFO:
                msgPanel.Visible = true;
                InfoDIV.Visible = true;
                lblInformationMsg.Text = response.getMessage();
                break;
            case TransactionResponse.SeverityLevel.WARNING:
                msgPanel.Visible = true;
                WarnDIV.Visible = true;
                if (response.getErrorCode() != null)
                {
                    lblWarningMsg.Text = response.getMessage() + response.getErrorCode();
                    break;
                }
                lblWarningMsg.Text = response.getMessage();
                break;
            case TransactionResponse.SeverityLevel.ERROR:
                msgPanel.Visible = true;
                ErroroDIV.Visible = true;
                if (response.getErrorCode() != null)
                {
                    lblErrorMsg.Text = response.getMessage() + response.getErrorCode();
                    break;
                }
                lblErrorMsg.Text = response.getMessage();
                break;

        }
    }
开发者ID:jLeta,项目名称:HN_HR_1.0,代码行数:39,代码来源:get-applicant-passed-for-further-process.aspx.cs

示例3: displayMessageToTheUser

    private void displayMessageToTheUser(TransactionResponse response)
    {
        PanelApplicantmsg.Visible = true;
        ApplSuccessDiv.Visible = false;
        lblApplicantSuccessmsg.Text = "";
        ApplInfoDiv.Visible = false;
        lblApplicantInfomsg.Text = "";
        ApplWarDiv.Visible = false;
        lblApplicantWarnmsg.Text = "";
        ApplErrorDiv.Visible = false;
        lblApplicantErrormsg.Text = "";

        switch (response.getMessageType())
        {
            case TransactionResponse.SeverityLevel.SUCESS:
                ApplSuccessDiv.Visible = true;
                lblApplicantSuccessmsg.Text = response.getMessage();
                break;
            case TransactionResponse.SeverityLevel.INFO:
                ApplInfoDiv.Visible = true;
                lblApplicantInfomsg.Text = response.getMessage();
                break;
            case TransactionResponse.SeverityLevel.WARNING:
                ApplWarDiv.Visible = true;
                if (response.getErrorCode() != null)
                {
                    lblApplicantWarnmsg.Text = response.getMessage() + response.getErrorCode();
                    break;
                }
                lblApplicantWarnmsg.Text = response.getMessage();
                break;
            case TransactionResponse.SeverityLevel.ERROR:
                ApplErrorDiv.Visible = true;
                if (response.getErrorCode() != null)
                {
                    lblApplicantErrormsg.Text = response.getMessage() + response.getErrorCode();
                    break;
                }
                lblApplicantErrormsg.Text = response.getMessage();
                break;

        }
    }
开发者ID:jLeta,项目名称:HN_HR_1.0,代码行数:43,代码来源:update-interview-exam.aspx.cs


注:本文中的TransactionResponse.getMessageType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。