8 writes to m_config
mscorlib (8)
system\diagnostics\eventing\eventsource.cs (8)
753
m_config
= ValidateSettings(settings);
1462
m_config
= ValidateSettings(settings);
3973
if (value)
m_config
|= EventSourceSettings.ThrowOnEventWriteErrors;
3974
else
m_config
&= ~EventSourceSettings.ThrowOnEventWriteErrors;
3990
m_config
|= EventSourceSettings.EtwManifestEventFormat;
3991
m_config
&= ~EventSourceSettings.EtwSelfDescribingEventFormat;
3995
m_config
|= EventSourceSettings.EtwSelfDescribingEventFormat;
3996
m_config
&= ~EventSourceSettings.EtwManifestEventFormat;
5 references to m_config
mscorlib (5)
system\diagnostics\eventing\eventsource.cs (5)
383
get { return
m_config
; }
3970
get { return (
m_config
& EventSourceSettings.ThrowOnEventWriteErrors) != 0; }
3982
Contract.Assert(((
m_config
& EventSourceSettings.EtwManifestEventFormat) != 0) !=
3983
((
m_config
& EventSourceSettings.EtwSelfDescribingEventFormat) != 0));
3984
return (
m_config
& EventSourceSettings.EtwSelfDescribingEventFormat) != 0;