WebAuthenticationFailureAuditEvent.NameToAuthenticate Propriedade

Definição

Obtém o nome do usuário a ser autenticado.Gets the name of the user to authenticate.

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

Valor da propriedade

String

O nome do usuário a autenticar.The name of the user to authenticate.

Exemplos

O exemplo de código a seguir mostra como usar a NameToAuthenticate propriedade.The following code example shows how to use NameToAuthenticate property.

// 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


Comentários

Somente as auditorias com êxito devem incluir o nome do usuário autenticado.Only the success audits should include the name of the authenticated user. As auditorias de falha não devem incluir o nome de usuário, pois elas normalmente resultam de uma falha na descriptografia ou validação.The failure audits should not include the user name, since they typically result from failed decryption or validation.

Aplica-se a

Confira também