4 overrides of Attributes
System.Private.CoreLib (1)
src\System\Reflection\RuntimeEventInfo.cs (1)
176
public override EventAttributes
Attributes
=> m_flags;
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
18
public override EventAttributes
Attributes
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Events\RoEvent.cs (1)
47
public sealed override EventAttributes
Attributes
=> (_lazyEventAttributes == EventAttributesSentinel) ? (_lazyEventAttributes = ComputeAttributes()) : _lazyEventAttributes;
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
64
public override EventAttributes
Attributes
=> _innerEventInfo.Attributes;
6 references to Attributes
Microsoft.CodeAnalysis.Test.Utilities (2)
Platform\Custom\MetadataSignatureHelper.cs (2)
654
if (@event.
Attributes
.HasFlag(EventAttributes.SpecialName))
656
if (@event.
Attributes
.HasFlag(EventAttributes.RTSpecialName))
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\EventInfo.cs (1)
16
public bool IsSpecialName => (
Attributes
& EventAttributes.SpecialName) != 0;
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
20
get { return UnderlyingEvent.
Attributes
; }
System.Reflection.DispatchProxy (1)
System\Reflection\DispatchProxyGenerator.cs (1)
401
EventBuilder eb = _tb.DefineEvent(ei.Name, ei.
Attributes
, ei.EventHandlerType!);
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
64
public override EventAttributes Attributes => _innerEventInfo.
Attributes
;