2 instantiations of EventHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
568handle = new EventHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7385return new EventHandle(this);
17 references to EventHandle
System.Private.CoreLib (17)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
564public static uint Read(this NativeReader reader, uint offset, out EventHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
2701private readonly EventHandle _handle; 2703internal Event(MetadataReader reader, EventHandle handle) 2716public EventHandle Handle => _handle; 2756if (obj is EventHandle) 2757return _value == ((EventHandle)obj)._value; 2764public bool Equals(EventHandle handle) => _value == handle._value; 2770public static implicit operator Handle(EventHandle handle) 6284private EventHandle _current; 6290_current = default(EventHandle); 6293public EventHandle Current 7383public EventHandle ToEventHandle(MetadataReader reader) 7773public Event GetEvent(EventHandle handle)
System\Reflection\Runtime\EventInfos\NativeFormat\NativeFormatRuntimeEventInfo.cs (2)
46private NativeFormatRuntimeEventInfo(EventHandle eventHandle, NativeFormatRuntimeNamedTypeInfo definingTypeInfo, RuntimeTypeInfo contextTypeInfo, RuntimeTypeInfo reflectedType) : 172private readonly EventHandle _eventHandle;
System\Reflection\Runtime\General\Dispensers.NativeFormat.cs (1)
137internal static RuntimeEventInfo GetRuntimeEventInfo(EventHandle eventHandle, NativeFormatRuntimeNamedTypeInfo definingTypeInfo, RuntimeTypeInfo contextTypeInfo, RuntimeTypeInfo reflectedType)
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeTypeInfo.CoreGetDeclared.cs (1)
59foreach (EventHandle eventHandle in DeclaredEventHandles)