4 overrides of Attributes
System.Private.CoreLib (1)
src\System\Reflection\RuntimeEventInfo.cs (1)
176public override EventAttributes Attributes => m_flags;
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;
6 references to Attributes
Microsoft.CodeAnalysis.Test.Utilities (2)
Platform\Custom\MetadataSignatureHelper.cs (2)
654if (@event.Attributes.HasFlag(EventAttributes.SpecialName)) 656if (@event.Attributes.HasFlag(EventAttributes.RTSpecialName))
System.Private.CoreLib (1)
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)
401EventBuilder 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;