WebBaseEvent.EventCode Property

Definition

Gets the code value associated with the event.

public:
 property int EventCode { int get(); };
public int EventCode { get; }
member this.EventCode : int
Public ReadOnly Property EventCode As Integer

Property Value

One of the WebEventCodes values.

Examples

The following code example shows how to obtain the event code.

// Get the event code.
eCode = EventCode;
' Get the event code.
eCode = EventCode

Remarks

More information about the event is contained in the related Message value.

Note

If you inherit from the WebBaseEvent class, the event code you specify for your custom event must be greater than WebExtendedBase.

Applies to

See also