System.Reflection.Metadata.EventDefinition
namespace System.Reflection.Metadata
{
public struct EventDefinition
{
public StringHandle Name { get; }
public EventAttributes Attributes { get; }
public EntityHandle Type { get; }
public CustomAttributeHandleCollection GetCustomAttributes();
public EventAccessors GetAccessors();
}
}