18 references to Event
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\MemberInfo\TypeImpl.cs (1)
218
case System.Reflection.MemberTypes.
Event
:
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\OverloadResolution.vb (1)
801
MemberTypes.
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 (10)
src\libraries\System.Private.CoreLib\src\System\Reflection\EventInfo.cs (1)
13
public override MemberTypes MemberType => MemberTypes.
Event
;
src\libraries\System.Private.CoreLib\src\System\Reflection\MemberTypes.cs (1)
17
All = Constructor |
Event
| Field | Method | Property | TypeInfo | NestedType,
src\libraries\System.Private.CoreLib\src\System\Type.Helpers.cs (1)
232
if ((memberType & MemberTypes.
Event
) != 0)
src\System\Attribute.CoreCLR.cs (3)
461
MemberTypes.
Event
=> InternalGetCustomAttributes((EventInfo)element, attributeType, inherit),
478
MemberTypes.
Event
=> InternalGetCustomAttributes((EventInfo)element, typeof(Attribute), inherit),
500
MemberTypes.
Event
=> InternalIsDefined((EventInfo)element, attributeType, inherit),
src\System\Reflection\RuntimeEventInfo.cs (1)
121
public override MemberTypes MemberType => MemberTypes.
Event
;
src\System\RuntimeType.CoreCLR.cs (3)
3069
if ((type & MemberTypes.
Event
) != 0)
3072
if (type == MemberTypes.
Event
)
3123
MemberTypes.
Event
=> GetEventWithSameMetadataDefinitionAs(runtimeType, 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)