Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Opcode

EventOpcode System.Diagnostics.Tracing.EventWrittenEventArgs.Opcode
getset

Definition at line 115 of file EventWrittenEventArgs.cs.

116 {
117 get
118 {
119 if (EventId > 0)
120 {
121 return (EventOpcode)Metadata.Descriptor.Opcode;
122 }
123 return _moreInfo?.Opcode ?? EventOpcode.Info;
124 }
125 internal set
126 {
127 MoreInfo.Opcode = value;
128 }
129 }