4 overrides of Attributes
System.Private.CoreLib (1)
System\Reflection\Runtime\EventInfos\RuntimeEventInfo.cs (1)
133public abstract override EventAttributes Attributes { get; }
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
18public override EventAttributes Attributes
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Events\RoEvent.cs (1)
47public sealed override EventAttributes Attributes => (_lazyEventAttributes == EventAttributesSentinel) ? (_lazyEventAttributes = ComputeAttributes()) : _lazyEventAttributes;
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
64public override EventAttributes Attributes => _innerEventInfo.Attributes;
4 references to Attributes
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\EventInfo.cs (1)
16public bool IsSpecialName => (Attributes & EventAttributes.SpecialName) != 0;
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
20get { return UnderlyingEvent.Attributes; }
System.Reflection.DispatchProxy (1)
System\Reflection\DispatchProxyGenerator.cs (1)
412EventBuilder eb = _tb.DefineEvent(ei.Name, ei.Attributes, ei.EventHandlerType!);
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
64public override EventAttributes Attributes => _innerEventInfo.Attributes;