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)
271
if (!TraceCore.HandledExceptionErrorIsEnabled(
_diagnosticTrace
))
273
TraceCore.HandledExceptionError(
_diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
276
if (!TraceCore.HandledExceptionWarningIsEnabled(
_diagnosticTrace
))
278
TraceCore.HandledExceptionWarning(
_diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
281
if (!TraceCore.HandledExceptionVerboseIsEnabled(
_diagnosticTrace
))
283
TraceCore.HandledExceptionVerbose(
_diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
286
if (!TraceCore.HandledExceptionIsEnabled(
_diagnosticTrace
))
288
TraceCore.HandledException(
_diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
295
TraceCore.UnhandledException(
_diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
307
if (TraceCore.ThrowingExceptionIsEnabled(
_diagnosticTrace
))
309
TraceCore.ThrowingException(
_diagnosticTrace
, eventSource, exception != null ? exception.ToString() : string.Empty, exception);