다음을 통해 공유


WebAuthenticationSuccessAuditEvent.NameToAuthenticate 속성

정의

인증된 사용자의 이름을 가져옵니다.

public:
 property System::String ^ NameToAuthenticate { System::String ^ get(); };
public string NameToAuthenticate { get; }
member this.NameToAuthenticate : string
Public ReadOnly Property NameToAuthenticate As String

속성 값

String

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

예제

다음 코드 예제에서는 NameToAuthenticate 속성을 사용하는 방법을 보여 줍니다.

// Invoked in case of events identified by their event code.and 
// event detailed code.
public SampleWebAuthenticationSuccessAuditEvent(
    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

설명

성공 감사에만 인증된 된 사용자의 이름을 포함합니다. 실패 감사는 일반적으로 실패 한 암호 해독 또는 유효성 검사에서 발생 하므로 사용자 이름을 넣지 마십시오.

적용 대상

추가 정보