.NET API Reference

System.Reflection.EventAttributes Enum

The EventAttributes enumeration provides attributes that describe the behavior of an event at run time.

Namespace

System.Reflection

Assembly

System.Private.CoreLib.dll

Syntax

public enum EventAttributes
{
    None = 0,
    SpecialName = 512,
    RTSpecialName = 1024,
}

Members

NameValueDescription
None 0 No attribute flags are set.
SpecialName 512 Reserved for runtime use.
RTSpecialName 1024 Reserved for runtime use.

Remarks

The EventAttributes enumeration is used with the EventInfo.Attributes property to retrieve metadata about an event. The values are flags that can be combined using bitwise operations.

See also