1 write to diagnosticTrace
System.ServiceModel.Internals (1)
System\Runtime\ExceptionTrace.cs (1)
29
this.
diagnosticTrace
= diagnosticTrace;
20 references to diagnosticTrace
System.ServiceModel.Internals (20)
System\Runtime\ExceptionTrace.cs (20)
35
TraceCore.HandledException(this.
diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
41
TraceCore.HandledExceptionWarning(this.
diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
212
TraceCore.UnhandledException(this.
diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
220
if (TraceCore.HandledExceptionErrorIsEnabled(this.
diagnosticTrace
))
222
TraceCore.HandledExceptionError(this.
diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
226
if (TraceCore.HandledExceptionWarningIsEnabled(this.
diagnosticTrace
))
228
TraceCore.HandledExceptionWarning(this.
diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
232
if (TraceCore.HandledExceptionVerboseIsEnabled(this.
diagnosticTrace
))
234
TraceCore.HandledExceptionVerbose(this.
diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
238
if (TraceCore.HandledExceptionIsEnabled(this.
diagnosticTrace
))
240
TraceCore.HandledException(this.
diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
252
if (TraceCore.ThrowingEtwExceptionIsEnabled(this.
diagnosticTrace
))
254
TraceCore.ThrowingEtwException(this.
diagnosticTrace
, this.eventSourceName, exception != null ? exception.ToString() : string.Empty, exception);
258
if (TraceCore.EtwUnhandledExceptionIsEnabled(this.
diagnosticTrace
))
260
TraceCore.EtwUnhandledException(this.
diagnosticTrace
, exception != null ? exception.ToString() : string.Empty, exception);
264
if (TraceCore.ThrowingEtwExceptionVerboseIsEnabled(this.
diagnosticTrace
))
266
TraceCore.ThrowingEtwExceptionVerbose(this.
diagnosticTrace
, this.eventSourceName, exception != null ? exception.ToString() : string.Empty, exception);
285
if (TraceCore.ThrowingExceptionIsEnabled(this.
diagnosticTrace
))
287
TraceCore.ThrowingException(this.
diagnosticTrace
, eventSource, exception != null ? exception.ToString() : string.Empty, exception);
325
logger = new EventLogger(this.eventSourceName, this.
diagnosticTrace
);