2 instantiations of ExceptionInfo
Microsoft.Extensions.Logging.EventSource (2)
EventSourceLogger.cs (1)
251return exception != null ? new ExceptionInfo(exception) : ExceptionInfo.Empty;
ExceptionInfo.cs (1)
14public static ExceptionInfo Empty { get; } = new ExceptionInfo();
7 references to ExceptionInfo
Microsoft.Extensions.Logging.EventSource (7)
EventSourceLogger.cs (4)
131ExceptionInfo exceptionInfo = GetExceptionInfo(exception); 153ExceptionInfo exceptionInfo = GetExceptionInfo(exception); 249private static ExceptionInfo GetExceptionInfo(Exception? exception) 251return exception != null ? new ExceptionInfo(exception) : ExceptionInfo.Empty;
ExceptionInfo.cs (1)
14public static ExceptionInfo Empty { get; } = new ExceptionInfo();
LoggingEventSource.cs (2)
201[DynamicDependency(DynamicallyAccessedMemberTypes.PublicProperties, typeof(ExceptionInfo))] 210ExceptionInfo Exception,