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


C# EventArgs.GetType方法代码示例

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


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

示例1: runTest

 public bool runTest()
   {
   Console.WriteLine(s_strTFPath + " " + s_strTFName + " , for " + s_strClassMethod + " , Source ver " + s_strDtTmVer);
   int iCountErrors = 0;
   int iCountTestcases = 0;
   String strLoc = "Loc_000oo";
   String strValue = String.Empty;
   try
     {
     EventArgs ea = new EventArgs();
     iCountTestcases++;
     if(ea == null)
       {
       iCountErrors++;
       printerr( "Error_987ya! EventArgs not constructed");
       }
     iCountTestcases++;
     if(!ea.GetType().FullName.Equals("System.EventArgs"))
       {
       iCountErrors++;
       printerr("Error_498cy! Incorrect type");
       }
     iCountTestcases++;
     } catch (Exception exc_general ) {
     ++iCountErrors;
     Console.WriteLine (s_strTFAbbrev + " : Error Err_8888yyy!  strLoc=="+ strLoc +", exc_general=="+exc_general.ToString());
     }
   if ( iCountErrors == 0 )
     {
     Console.WriteLine( "paSs. "+s_strTFName+" ,iCountTestcases=="+iCountTestcases.ToString());
     return true;
     }
   else
     {
     Console.WriteLine("FAiL! "+s_strTFName+" ,iCountErrors=="+iCountErrors.ToString()+" , BugNums?: "+s_strActiveBugNums );
     return false;
     }
   }
开发者ID:gbarnett,项目名称:shared-source-cli-2.0,代码行数:38,代码来源:co5430ctor_obj.cs

示例2: btnSave_Click

 protected void btnSave_Click(object sender, EventArgs e)
 {
     try
     {
         Session.Timeout = int.Parse(txtSessionTimeOut.Text);
     }
     catch(Exception ex)
     {
         Session["ModuleName"] = " 系统信息参数设置";
         Session["FunctionName"] = "btnSave_Click";
         Session["ExceptionalType"] = e.GetType().FullName;
         Session["ExceptionalDescription"] = ex.Message;
         Response.Redirect("~/Common/MistakesPage.aspx");
     }
     SaveData();   //新的保存方法     
 }
开发者ID:Guoyingbin,项目名称:THOK.SortingSystem,代码行数:16,代码来源:BusinessProcess.aspx.cs

示例3: TraceEvent

    /* Events */
    protected virtual void TraceEvent(HtmlGenericControl memo, object sender, EventArgs args, string eventName) {
        string s = "";
        PropertyInfo[] properties = args.GetType().GetProperties(BindingFlags.Instance | BindingFlags.Public);
        foreach (PropertyInfo propertyInfo in properties) {
            s += propertyInfo.Name + " = " +
                (propertyInfo.PropertyType.IsValueType ? propertyInfo.GetValue(args, null) : "[" + propertyInfo.PropertyType.Name + "]") + "<br />";
        }

        memo.InnerHtml += "<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tr><td valign=\"top\" style=\"width: 100px;\">Sender:</td><td valign=\"top\">" +
            (sender as Control).ID +
            "</td></tr><tr><td valign=\"top\">EventType:</td><td valign=\"top\"><b>" +
            eventName + "</b></td></tr><tr><td valign=\"top\">Arguments:</td><td valign=\"top\">" +
            s + "</td></tr></table><br />";
    }
开发者ID:BiYiTuan,项目名称:soa,代码行数:15,代码来源:Utils.cs

示例4: panStartedHandler

 private void panStartedHandler(object sender, EventArgs e)
 {
     Debug.Log ("panStartedHandler()");
     Debug.Log (e.GetType());
 }
开发者ID:bwiberg,项目名称:unity-2d-game,代码行数:5,代码来源:Touch_Router.cs


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