WebRequestEvent Constructors
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.
Initializes a new instance of the WebRequestEvent class.
Overloads
WebRequestEvent(String, Object, Int32) |
Initializes the WebRequestEvent class with specified event parameters. |
WebRequestEvent(String, Object, Int32, Int32) |
Initializes the WebRequestEvent class with specified event parameters. |
WebRequestEvent(String, Object, Int32)
Initializes the WebRequestEvent class with specified event parameters.
protected public:
WebRequestEvent(System::String ^ message, System::Object ^ eventSource, int eventCode);
protected internal WebRequestEvent (string message, object eventSource, int eventCode);
new System.Web.Management.WebRequestEvent : string * obj * int -> System.Web.Management.WebRequestEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer)
Parameters
- message
- String
The message associated with the event.
- eventSource
- Object
The object that is the source of the event.
- eventCode
- Int32
The WebEventCodes code associated with the event. It must be greater than WebExtendedBase.
Examples
The following code example shows how to customize this constructor.
Note
The value you use to define your event code or identifier must be greater than WebExtendedBase.
// Invoked in case of events identified only
// by their event code.
public SampleWebRequestEvent(
string msg,
object eventSource, int eventCode):
base(msg, eventSource, eventCode)
{
// Perform custom initialization.
customCreatedMsg =
string.Format(
"Event created at: {0}",
EventTime.ToString());
}
' Invoked in case of events identified only
' by their event code.
Public Sub New(ByVal msg As String, _
ByVal eventSource As Object, _
ByVal eventCode As Integer)
MyBase.New(msg, eventSource, eventCode)
' Perform custom initialization.
customCreatedMsg = String.Format( _
"Event created at: {0}", _
EventTime.ToString())
End Sub
Remarks
The constructor WebRequestEvent allows specifying the event message, the source of the event, and the code or identifier associated with the event.
Applies to
WebRequestEvent(String, Object, Int32, Int32)
Initializes the WebRequestEvent class with specified event parameters.
protected public:
WebRequestEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, int eventDetailCode);
protected internal WebRequestEvent (string message, object eventSource, int eventCode, int eventDetailCode);
new System.Web.Management.WebRequestEvent : string * obj * int * int -> System.Web.Management.WebRequestEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, eventDetailCode As Integer)
Parameters
- message
- String
The message associated with the event.
- eventSource
- Object
The object that is the source of the event.
- eventCode
- Int32
The WebEventCodes code associated with the event. It must be greater than WebExtendedBase.
- eventDetailCode
- Int32
The WebEventCodes detail code associated with the event.
Examples
The following code example shows how to customize this constructor.
Note
The value you use to define your event code or identifier must be greater than WebExtendedBase
// Invoked in case of events identified
// by their event code.and
// related event detailed code.
public SampleWebRequestEvent(string msg,
object eventSource, int eventCode,
int eventDetailCode):
base(msg, eventSource, eventCode,
eventDetailCode)
{
// Perform custom initialization.
customCreatedMsg =
string.Format(
"Event created at: {0}",
EventTime.ToString());
}
' Invoked in case of events identified
' by their event code.and
' related event detailed code.
Public Sub New(ByVal msg As String, _
ByVal eventSource As Object, _
ByVal eventCode As Integer, _
ByVal eventDetailCode As Integer)
MyBase.New(msg, eventSource, _
eventCode, eventDetailCode)
' Perform custom initialization.
customCreatedMsg = String.Format( _
"Event created at: {0}", _
EventTime.ToString())
End Sub
Remarks
The constructor WebRequestEvent allows specifying the event message, the source of the event, the code or identifier associated with the event, and the detailed code.