20 instantiations of EventSourcePrimitive
System.Private.CoreLib (20)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (20)
1212
public static implicit operator EventSourcePrimitive(bool value) =>
new
(value);
1213
public static implicit operator EventSourcePrimitive(byte value) =>
new
(value);
1214
public static implicit operator EventSourcePrimitive(short value) =>
new
(value);
1215
public static implicit operator EventSourcePrimitive(int value) =>
new
(value);
1216
public static implicit operator EventSourcePrimitive(long value) =>
new
(value);
1219
public static implicit operator EventSourcePrimitive(sbyte value) =>
new
(value);
1221
public static implicit operator EventSourcePrimitive(ushort value) =>
new
(value);
1223
public static implicit operator EventSourcePrimitive(uint value) =>
new
(value);
1225
public static implicit operator EventSourcePrimitive(ulong value) =>
new
(value);
1228
public static implicit operator EventSourcePrimitive(nuint value) =>
new
(value);
1230
public static implicit operator EventSourcePrimitive(float value) =>
new
(value);
1231
public static implicit operator EventSourcePrimitive(double value) =>
new
(value);
1232
public static implicit operator EventSourcePrimitive(decimal value) =>
new
(value);
1234
public static implicit operator EventSourcePrimitive(string? value) =>
new
(value);
1235
public static implicit operator EventSourcePrimitive(byte[]? value) =>
new
(value);
1237
public static implicit operator EventSourcePrimitive(Guid value) =>
new
(value);
1238
public static implicit operator EventSourcePrimitive(DateTime value) =>
new
(value);
1239
public static implicit operator EventSourcePrimitive(nint value) =>
new
(value);
1240
public static implicit operator EventSourcePrimitive(char value) =>
new
(value);
1242
public static implicit operator EventSourcePrimitive(Enum value) =>
new
(value);
21 references to EventSourcePrimitive
System.Private.CoreLib (21)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (21)
1212
public static implicit operator
EventSourcePrimitive
(bool value) => new(value);
1213
public static implicit operator
EventSourcePrimitive
(byte value) => new(value);
1214
public static implicit operator
EventSourcePrimitive
(short value) => new(value);
1215
public static implicit operator
EventSourcePrimitive
(int value) => new(value);
1216
public static implicit operator
EventSourcePrimitive
(long value) => new(value);
1219
public static implicit operator
EventSourcePrimitive
(sbyte value) => new(value);
1221
public static implicit operator
EventSourcePrimitive
(ushort value) => new(value);
1223
public static implicit operator
EventSourcePrimitive
(uint value) => new(value);
1225
public static implicit operator
EventSourcePrimitive
(ulong value) => new(value);
1228
public static implicit operator
EventSourcePrimitive
(nuint value) => new(value);
1230
public static implicit operator
EventSourcePrimitive
(float value) => new(value);
1231
public static implicit operator
EventSourcePrimitive
(double value) => new(value);
1232
public static implicit operator
EventSourcePrimitive
(decimal value) => new(value);
1234
public static implicit operator
EventSourcePrimitive
(string? value) => new(value);
1235
public static implicit operator
EventSourcePrimitive
(byte[]? value) => new(value);
1237
public static implicit operator
EventSourcePrimitive
(Guid value) => new(value);
1238
public static implicit operator
EventSourcePrimitive
(DateTime value) => new(value);
1239
public static implicit operator
EventSourcePrimitive
(nint value) => new(value);
1240
public static implicit operator
EventSourcePrimitive
(char value) => new(value);
1242
public static implicit operator
EventSourcePrimitive
(Enum value) => new(value);
1460
protected void WriteEvent(int eventId, params
EventSourcePrimitive
[] args)