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