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