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

◆ PayloadNames

ReadOnlyCollection<string>? System.Diagnostics.Tracing.EventWrittenEventArgs.PayloadNames
getset

Definition at line 76 of file EventWrittenEventArgs.cs.

77 {
78 get
79 {
80 object obj = _moreInfo?.PayloadNames;
81 if (obj == null)
82 {
83 if (EventId > 0)
84 {
85 return Metadata.ParameterNames;
86 }
87 obj = null;
88 }
90 }
91 internal set
92 {
93 MoreInfo.PayloadNames = value;
94 }
95 }