4 references to ThrowOnEventWriteErrors
mscorlib (4)
system\diagnostics\eventing\eventsource.cs (4)
734
: this(EventSourceSettings.EtwManifestEventFormat | (throwOnEventWriteErrors ? EventSourceSettings.
ThrowOnEventWriteErrors
: 0))
3970
get { return (m_config & EventSourceSettings.
ThrowOnEventWriteErrors
) != 0; }
3973
if (value) m_config |= EventSourceSettings.
ThrowOnEventWriteErrors
;
3974
else m_config &= ~EventSourceSettings.
ThrowOnEventWriteErrors
;