다음을 통해 공유


WebAuthenticationFailureAuditEvent 생성자

정의

WebAuthenticationFailureAuditEvent 클래스의 새 인스턴스를 초기화합니다.

오버로드

WebAuthenticationFailureAuditEvent(String, Object, Int32, String)

지정된 이벤트 매개 변수를 사용하여 WebAuthenticationFailureAuditEvent 클래스의 새 인스턴스를 초기화합니다.

WebAuthenticationFailureAuditEvent(String, Object, Int32, Int32, String)

지정된 이벤트 매개 변수를 사용하여 WebAuthenticationFailureAuditEvent 클래스의 새 인스턴스를 초기화합니다.

WebAuthenticationFailureAuditEvent(String, Object, Int32, String)

지정된 이벤트 매개 변수를 사용하여 WebAuthenticationFailureAuditEvent 클래스의 새 인스턴스를 초기화합니다.

protected public:
 WebAuthenticationFailureAuditEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, System::String ^ nameToAuthenticate);
protected internal WebAuthenticationFailureAuditEvent (string message, object eventSource, int eventCode, string nameToAuthenticate);
new System.Web.Management.WebAuthenticationFailureAuditEvent : string * obj * int * string -> System.Web.Management.WebAuthenticationFailureAuditEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, nameToAuthenticate As String)

매개 변수

message
String

이벤트 설명입니다.

eventSource
Object

이벤트의 소스인 개체입니다.

eventCode
Int32

이벤트와 연결된 WebEventCodes 값입니다.

nameToAuthenticate
String

인증할 사용자의 이름입니다.

예제

다음 코드 예제에는이 생성자를 사용자 지정 하는 방법을 보여 줍니다.

// Invoked in case of events identified only by 
// their event code.
public SampleWebAuthenticationFailureAuditEvent(
    string msg, object eventSource, 
    int eventCode, string userName):
base(msg, eventSource, eventCode, userName)
{
    // 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, _
ByVal userName As String)
    MyBase.New(msg, eventSource, eventCode, userName)
    ' Perform custom initialization.
    customCreatedMsg = _
    String.Format("Event created at: {0}", _
    DateTime.Now.TimeOfDay.ToString())

End Sub

설명

WebAuthenticationFailureAuditEvent 생성자는 코드에서 직접 사용할 수 없습니다. ASP.NET에서 호출 됩니다. 호출할 수 있습니다 합니다 WebAuthenticationFailureAuditEvent 에서 파생 하는 경우 생성자는 WebAuthenticationFailureAuditEvent 클래스입니다.

적용 대상

WebAuthenticationFailureAuditEvent(String, Object, Int32, Int32, String)

지정된 이벤트 매개 변수를 사용하여 WebAuthenticationFailureAuditEvent 클래스의 새 인스턴스를 초기화합니다.

protected public:
 WebAuthenticationFailureAuditEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, int eventDetailCode, System::String ^ nameToAuthenticate);
protected internal WebAuthenticationFailureAuditEvent (string message, object eventSource, int eventCode, int eventDetailCode, string nameToAuthenticate);
new System.Web.Management.WebAuthenticationFailureAuditEvent : string * obj * int * int * string -> System.Web.Management.WebAuthenticationFailureAuditEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, eventDetailCode As Integer, nameToAuthenticate As String)

매개 변수

message
String

이벤트 설명입니다.

eventSource
Object

이벤트의 소스인 개체입니다.

eventCode
Int32

이벤트와 관련된 코드입니다. 사용자 지정 이벤트를 구현할 때 이벤트 코드는 WebExtendedBase보다 커야 합니다.

eventDetailCode
Int32

이벤트의 상세 식별자를 지정하는 WebEventCodes 값입니다.

nameToAuthenticate
String

인증할 사용자의 이름입니다.

예제

다음 코드 예제에는이 생성자를 사용자 지정 하는 방법을 보여 줍니다.

// Invoked in case of events identified by their event code.and 
// event detailed code.
public SampleWebAuthenticationFailureAuditEvent(
    string msg, object eventSource,
    int eventCode, int detailedCode, string userName):
base(msg, eventSource, eventCode, detailedCode, userName)
{
    // 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, _
ByVal userName As String)
    MyBase.New(msg, eventSource, eventCode, _
    detailedCode, userName)
    ' Perform custom initialization.
    customCreatedMsg = _
    String.Format( _
    "Event created at: {0}", DateTime.Now.TimeOfDay.ToString())

End Sub

설명

WebAuthenticationFailureAuditEvent 생성자는 코드에서 직접 사용할 수 없습니다. ASP.NET에서 호출 됩니다. 호출할 수 있습니다 합니다 WebAuthenticationFailureAuditEvent 에서 파생 하는 경우 생성자는 WebAuthenticationFailureAuditEvent 클래스입니다.

적용 대상