30 references to TraceCore
System.ServiceModel.Primitives (30)
Internals\System\Runtime\ActionItem.cs (8)
164
if (
TraceCore
.ActionItemScheduledIsEnabled(Fx.Trace))
166
TraceCore
.ActionItemScheduled(Fx.Trace, _eventTraceActivity);
184
if (
TraceCore
.ActionItemScheduledIsEnabled(Fx.Trace))
186
TraceCore
.ActionItemScheduled(Fx.Trace, _eventTraceActivity);
243
if (
TraceCore
.ActionItemCallbackInvokedIsEnabled(Fx.Trace))
245
TraceCore
.ActionItemCallbackInvoked(Fx.Trace, _eventTraceActivity);
287
if (
TraceCore
.ActionItemCallbackInvokedIsEnabled(Fx.Trace))
289
TraceCore
.ActionItemCallbackInvoked(Fx.Trace, _eventTraceActivity);
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);
Internals\System\Runtime\Fx.cs (4)
123
TraceCore
.ShipAssertExceptionMessage(Trace, description);
139
TraceCore
.ShipAssertExceptionMessage(Trace, description);
441
if (
TraceCore
.ActionItemCallbackInvokedIsEnabled(trace) ||
442
TraceCore
.ActionItemScheduledIsEnabled(trace))
Internals\System\Runtime\InternalBufferManager.cs (6)
117
if (
TraceCore
.BufferPoolChangeQuotaIsEnabled(Fx.Trace))
119
TraceCore
.BufferPoolChangeQuota(Fx.Trace, bufferPool.BufferSize, delta);
255
if (
TraceCore
.BufferPoolAllocationIsEnabled(Fx.Trace))
257
TraceCore
.BufferPoolAllocation(Fx.Trace, bufferPool.BufferSize);
265
if (
TraceCore
.BufferPoolAllocationIsEnabled(Fx.Trace))
267
TraceCore
.BufferPoolAllocation(Fx.Trace, bufferSize);
Internals\TraceCore.cs (1)
37
resourceManager = new System.Resources.ResourceManager("System.Runtime.TraceCore", typeof(
TraceCore
).Assembly());