Поделиться через


WebAuthenticationSuccessAuditEvent.NameToAuthenticate Свойство

Определение

Получает имя пользователя, прошедшего проверку подлинности.

public:
 property System::String ^ NameToAuthenticate { System::String ^ get(); };
public string NameToAuthenticate { get; }
member this.NameToAuthenticate : string
Public ReadOnly Property NameToAuthenticate As 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

Комментарии

Только аудит успешного выполнения включает имя пользователя, прошедшего проверку подлинности. Аудит сбоев не включает имя пользователя, так как они обычно являются результатом неудачной расшифровки или проверки.

Применяется к

См. также раздел