1 write to _diagnosticTrace
System.ServiceModel.Primitives (1)
Internals\System\Runtime\ExceptionTrace.cs (1)
27_diagnosticTrace = diagnosticTrace;
11 references to _diagnosticTrace
System.ServiceModel.Primitives (11)
Internals\System\Runtime\ExceptionTrace.cs (11)
271if (!TraceCore.HandledExceptionErrorIsEnabled(_diagnosticTrace)) 273TraceCore.HandledExceptionError(_diagnosticTrace, exception != null ? exception.ToString() : string.Empty, exception); 276if (!TraceCore.HandledExceptionWarningIsEnabled(_diagnosticTrace)) 278TraceCore.HandledExceptionWarning(_diagnosticTrace, exception != null ? exception.ToString() : string.Empty, exception); 281if (!TraceCore.HandledExceptionVerboseIsEnabled(_diagnosticTrace)) 283TraceCore.HandledExceptionVerbose(_diagnosticTrace, exception != null ? exception.ToString() : string.Empty, exception); 286if (!TraceCore.HandledExceptionIsEnabled(_diagnosticTrace)) 288TraceCore.HandledException(_diagnosticTrace, exception != null ? exception.ToString() : string.Empty, exception); 295TraceCore.UnhandledException(_diagnosticTrace, exception != null ? exception.ToString() : string.Empty, exception); 307if (TraceCore.ThrowingExceptionIsEnabled(_diagnosticTrace)) 309TraceCore.ThrowingException(_diagnosticTrace, eventSource, exception != null ? exception.ToString() : string.Empty, exception);