18 references to Event
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\MemberInfo\TypeImpl.cs (1)
218case System.Reflection.MemberTypes.Event:
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\OverloadResolution.vb (1)
801MemberTypes.Event,
System.ComponentModel.Composition (3)
System\ComponentModel\Composition\ReflectionModel\LazyMemberInfo.cs (3)
35case MemberTypes.Event: 148MemberTypes supportedTypes = MemberTypes.TypeInfo | MemberTypes.NestedType | MemberTypes.Constructor | MemberTypes.Field | MemberTypes.Method | MemberTypes.Property | MemberTypes.Event; 184case MemberTypes.Event:
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Reflection\EventInfo.cs (1)
13public override MemberTypes MemberType => MemberTypes.Event;
src\libraries\System.Private.CoreLib\src\System\Reflection\MemberTypes.cs (1)
17All = Constructor | Event | Field | Method | Property | TypeInfo | NestedType,
src\libraries\System.Private.CoreLib\src\System\Type.Helpers.cs (1)
232if ((memberType & MemberTypes.Event) != 0)
src\System\Attribute.CoreCLR.cs (3)
461MemberTypes.Event => InternalGetCustomAttributes((EventInfo)element, attributeType, inherit), 478MemberTypes.Event => InternalGetCustomAttributes((EventInfo)element, typeof(Attribute), inherit), 500MemberTypes.Event => InternalIsDefined((EventInfo)element, attributeType, inherit),
src\System\Reflection\RuntimeEventInfo.cs (1)
121public override MemberTypes MemberType => MemberTypes.Event;
src\System\RuntimeType.CoreCLR.cs (3)
3069if ((type & MemberTypes.Event) != 0) 3072if (type == MemberTypes.Event) 3123MemberTypes.Event => GetEventWithSameMetadataDefinitionAs(runtimeType, member),
System.Reflection.Context (2)
System\Reflection\Context\CustomReflectionContext.Projector.cs (1)
238case MemberTypes.Event:
System\Reflection\Context\Projection\ProjectingType.cs (1)
118if ((type & MemberTypes.Event) != 0)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\RuntimeTypeInfo.GetMember.cs (1)
49if ((results = QuerySpecificMemberTypeIfRequested(type, optionalName, bindingAttr, predicate, MemberTypes.Event, out QueryResult<EventInfo> events)) != null)