當前位置: 首頁>>代碼示例>>C#>>正文


C# Exception.IsNotNull方法代碼示例

本文整理匯總了C#中System.Exception.IsNotNull方法的典型用法代碼示例。如果您正苦於以下問題:C# Exception.IsNotNull方法的具體用法?C# Exception.IsNotNull怎麽用?C# Exception.IsNotNull使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Exception的用法示例。


在下文中一共展示了Exception.IsNotNull方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: PreProcess

        private static void PreProcess(Severity severity, string additionalMessage, Exception exception)
        {
            var callStack = new StackTrace(1, true);
            var stackFrame = callStack.GetFrame(1);
            var log = new Log
            {
                MethodName = stackFrame.GetMethod().Name,
                ClassName = stackFrame.GetMethod().DeclaringType.Name,
                ApplicationName = stackFrame.GetMethod().DeclaringType.Assembly.GetName().Name,
                LineNumber = stackFrame.GetFileLineNumber(),
                Severity = (int)severity,
                Message = $"Message: {additionalMessage ?? ""}"
            };

            if (exception.IsNotNull())
            {
                log.Message += $" Exception: {(exception.IsNotNull() ? exception.ToString() : "")}";
            }

            using (var ctx = new ApplicationDbContext())
            {
                ctx.Logs.Add(log);
                ctx.SaveChanges();
            }
        }
開發者ID:DevJonny,項目名稱:Russ,代碼行數:25,代碼來源:Logger.cs

示例2: FormatException

 /// <summary>
 ///     Formats an exception to be placed in the debug output.
 /// </summary>
 /// <param name="ex">
 ///     The exception.
 /// </param>
 /// <returns>
 ///     A string that represents the message to display for the exception.
 /// </returns>
 protected string FormatException(Exception ex)
 {
     var builder = new StringBuilder();
     if (ex.IsNotNull())
     {
         builder.AppendLine(ex.Message);
         builder.AppendLine(ex.StackTrace);
         var aggex = ex as AggregateException;
         if (aggex.IsNotNull())
         {
             foreach (Exception innerException in aggex.InnerExceptions)
             {
                 builder.AppendLine(this.FormatException(innerException));
             }
         }
         else if (ex.InnerException.IsNotNull())
         {
             builder.AppendLine(this.FormatException(ex.InnerException));
         }
     }
     return builder.ToString();
 }
開發者ID:docschmidt,項目名稱:azure-powershell,代碼行數:31,代碼來源:AzureHDInsightCmdlet.cs

示例3: IsFatalException

        private bool IsFatalException(Exception e)
        {
            var fatalTypes = new List<Type> { typeof(ArgumentException) };

            bool rv = false;
            if (e.IsNotNull())
            {
                Exception finalException = GetFirstException(e);
                Type exceptionType = finalException.GetType();
                foreach (Type t in fatalTypes)
                {
                    if (t.IsAssignableFrom(exceptionType))
                    {
                        rv = true;
                        break;
                    }
                }
            }

            return rv;
        }
開發者ID:pdlg-spotlight,項目名稱:lambda-architecture,代碼行數:21,代碼來源:DefaultRetryPolicy.cs


注:本文中的System.Exception.IsNotNull方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。