2 instantiations of ExceptionInfo
Microsoft.Extensions.Logging.EventSource (2)
EventSourceLogger.cs (1)
234
return exception != null ? new
ExceptionInfo
(exception) : ExceptionInfo.Empty;
ExceptionInfo.cs (1)
14
public static ExceptionInfo Empty { get; } = new
ExceptionInfo
();
6 references to ExceptionInfo
Microsoft.Extensions.Logging.EventSource (6)
EventSourceLogger.cs (4)
114
ExceptionInfo
exceptionInfo = GetExceptionInfo(exception);
136
ExceptionInfo
exceptionInfo = GetExceptionInfo(exception);
232
private static
ExceptionInfo
GetExceptionInfo(Exception? exception)
234
return exception != null ? new ExceptionInfo(exception) :
ExceptionInfo
.Empty;
ExceptionInfo.cs (1)
14
public static
ExceptionInfo
Empty { get; } = new ExceptionInfo();
LoggingEventSource.cs (1)
192
ExceptionInfo
Exception,