WebAuthenticationFailureAuditEvent.NameToAuthenticate Propiedad

Definición

Obtiene el nombre del usuario que se va a autenticar.

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

Valor de propiedad

Nombre del usuario que se va a autenticar.

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar NameToAuthenticate la propiedad .

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

Comentarios

Solo las auditorías correctas deben incluir el nombre del usuario autenticado. Las auditorías de error no deben incluir el nombre de usuario, ya que normalmente resultan de un descifrado o validación con errores.

Se aplica a

Consulte también