5 writes to valuesSet
mscorlib (5)
System\Diagnostics\Eventing\TraceLogging\EventSourceOptions.cs (5)
43this.valuesSet |= levelSet; 61this.valuesSet |= opcodeSet; 87this.valuesSet |= keywordsSet; 105this.valuesSet |= tagsSet; 122this.valuesSet |= activityOptionsSet;
11 references to valuesSet
mscorlib (11)
System\Diagnostics\Eventing\TraceLogging\EventSourceOptions.cs (1)
69return (this.valuesSet & opcodeSet) != 0;
System\Diagnostics\Eventing\TraceLogging\TraceLoggingEventSource.cs (10)
357byte level = (options.valuesSet & EventSourceOptions.levelSet) != 0 360EventKeywords keywords = (options.valuesSet & EventSourceOptions.keywordsSet) != 0 409byte level = (options.valuesSet & EventSourceOptions.levelSet) != 0 412byte opcode = (options.valuesSet & EventSourceOptions.opcodeSet) != 0 415EventTags tags = (options.valuesSet & EventSourceOptions.tagsSet) != 0 418EventKeywords keywords = (options.valuesSet & EventSourceOptions.keywordsSet) != 0 827byte level = (options.valuesSet & EventSourceOptions.levelSet) != 0 830byte opcode = (options.valuesSet & EventSourceOptions.opcodeSet) != 0 833EventTags tags = (options.valuesSet & EventSourceOptions.tagsSet) != 0 836EventKeywords keywords = (options.valuesSet & EventSourceOptions.keywordsSet) != 0