WebAuditEvent 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.
Overloads
WebAuditEvent(String, Object, Int32) |
Initializes a new instance of the WebAuditEvent class using the supplied parameters. |
WebAuditEvent(String, Object, Int32, Int32) |
Initializes a new instance of the WebAuditEvent class with specified event parameters. |
WebAuditEvent(String, Object, Int32)
Initializes a new instance of the WebAuditEvent class using the supplied parameters.
protected public:
WebAuditEvent(System::String ^ message, System::Object ^ eventSource, int eventCode);
protected internal WebAuditEvent (string message, object eventSource, int eventCode);
new System.Web.Management.WebAuditEvent : string * obj * int -> System.Web.Management.WebAuditEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer)
Parameters
- message
- String
The event description.
- eventSource
- Object
The object that is the source of the event.
- eventCode
- Int32
The code associated with the event. When you implement a custom event, the event code must be greater than WebExtendedBase.
Examples
The following code example shows how to call this constructor. This code example is part of a larger example provided for the WebAuditEvent class.
// Invoked in case of events identified only by their event code.
public SampleWebAuditEvent(string msg, object eventSource,
int eventCode): base(msg, eventSource, eventCode)
{
// Perform custom initialization.
customCreatedMsg =
string.Format("Event created at: {0}",
DateTime.Now.TimeOfDay.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}", DateTime.Now.TimeOfDay.ToString())
End Sub
Remarks
This constructor is used internally by the ASP.NET health-monitoring system. You will never use it to instantiate a WebAuditEvent object, but you can call this constructor when implementing your own event type that inherits from this class.
Applies to
WebAuditEvent(String, Object, Int32, Int32)
Initializes a new instance of the WebAuditEvent class with specified event parameters.
protected public:
WebAuditEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, int eventDetailCode);
protected internal WebAuditEvent (string message, object eventSource, int eventCode, int eventDetailCode);
new System.Web.Management.WebAuditEvent : string * obj * int * int -> System.Web.Management.WebAuditEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, eventDetailCode As Integer)
Parameters
- message
- String
The event description.
- eventSource
- Object
The object that is the source of the event.
- eventCode
- Int32
The code associated with the event. When you implement a custom event, the event code must be greater than WebExtendedBase.
- eventDetailCode
- Int32
The WebEventCodes value that specifies the detailed identifier for the event.
Examples
The following code example shows how to call this constructor. This code example is part of a larger example provided for the WebAuditEvent class.
// Invoked in case of events identified by their event code.and
// event detailed code.
public SampleWebAuditEvent(string msg, object eventSource,
int eventCode, int detailedCode):
base(msg, eventSource, eventCode, detailedCode)
{
// Perform custom initialization.
customCreatedMsg =
string.Format("Event created at: {0}",
DateTime.Now.TimeOfDay.ToString());
}
' Invoked in case of events identified by their event code.and
' event detailed code.
Public Sub New(ByVal msg As String, ByVal eventSource As Object, _
ByVal eventCode As Integer, ByVal detailedCode As Integer)
MyBase.New(msg, eventSource, eventCode, detailedCode)
' Perform custom initialization.
customCreatedMsg = String.Format("Event created at: {0}", _
DateTime.Now.TimeOfDay.ToString())
End Sub
Remarks
This constructor is used internally by the ASP.NET health-monitoring system. You will never use it to instantiate a WebAuditEvent object, but you can call this constructor when implementing your own event type that inherits from this class.