EventInfo.IsSpecialName Property

Definition

Gets a value indicating whether the EventInfo has a name with a special meaning.

public:
 property bool IsSpecialName { bool get(); };
public bool IsSpecialName { get; }
member this.IsSpecialName : bool
Public ReadOnly Property IsSpecialName As Boolean

Property Value

true if this event has a special name; otherwise, false.

Implements

Remarks

This property determines whether the event's name has a special meaning. Names that begin with or contain an underscore character (_), property accessors, and operator overloading methods are examples of names that might require special treatment by some compilers.

Applies to

See also