14 references to Event
System.ComponentModel.Composition (3)
System\ComponentModel\Composition\ReflectionModel\LazyMemberInfo.cs (3)
35
case MemberTypes.
Event
:
148
MemberTypes supportedTypes = MemberTypes.TypeInfo | MemberTypes.NestedType | MemberTypes.Constructor | MemberTypes.Field | MemberTypes.Method | MemberTypes.Property | MemberTypes.
Event
;
184
case MemberTypes.
Event
:
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Attribute.cs (3)
596
MemberTypes.
Event
=> InternalGetCustomAttributes((EventInfo)element, attributeType, inherit),
613
MemberTypes.
Event
=> InternalGetCustomAttributes((EventInfo)element, typeof(Attribute), inherit),
635
MemberTypes.
Event
=> InternalIsDefined((EventInfo)element, attributeType, inherit),
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\EventInfo.cs (1)
13
public override MemberTypes MemberType => MemberTypes.
Event
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\MemberTypes.cs (1)
17
All = Constructor |
Event
| Field | Method | Property | TypeInfo | NestedType,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.Helpers.cs (1)
260
if ((memberType & MemberTypes.
Event
) != 0)
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.GetMember.cs (2)
59
if ((results = QuerySpecificMemberTypeIfRequested(EventPolicies.Instance, type, optionalName, bindingAttr, predicate, MemberTypes.
Event
, out events)) != null)
164
MemberTypes.
Event
=> QueryMemberWithSameMetadataDefinitionAs(EventPolicies.Instance, member),
System.Reflection.Context (2)
System\Reflection\Context\CustomReflectionContext.Projector.cs (1)
238
case MemberTypes.
Event
:
System\Reflection\Context\Projection\ProjectingType.cs (1)
118
if ((type & MemberTypes.
Event
) != 0)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\RuntimeTypeInfo.GetMember.cs (1)
49
if ((results = QuerySpecificMemberTypeIfRequested(type, optionalName, bindingAttr, predicate, MemberTypes.
Event
, out QueryResult<EventInfo> events)) != null)