WebBaseEvent.EventCode Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.