WebAuthenticationFailureAuditEvent Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Inicializa una nueva instancia de la clase WebAuthenticationFailureAuditEvent.
Sobrecargas
WebAuthenticationFailureAuditEvent(String, Object, Int32, String) |
Inicializa una nueva instancia de la clase WebAuthenticationFailureAuditEvent con los parámetros de evento especificados. |
WebAuthenticationFailureAuditEvent(String, Object, Int32, Int32, String) |
Inicializa una nueva instancia de la clase WebAuthenticationFailureAuditEvent con los parámetros de evento especificados. |
WebAuthenticationFailureAuditEvent(String, Object, Int32, String)
Inicializa una nueva instancia de la clase WebAuthenticationFailureAuditEvent con los parámetros de evento especificados.
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)
Parámetros
- message
- String
Descripción del evento.
- eventSource
- Object
El objeto que es el origen del evento.
- eventCode
- Int32
Valor de WebEventCodes asociado al evento.
- nameToAuthenticate
- String
Nombre del usuario que se va a autenticar.
Ejemplos
En el ejemplo de código siguiente se muestra cómo personalizar este constructor.
// 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
Comentarios
El WebAuthenticationFailureAuditEvent constructor no está pensado para usarse directamente desde el código. Lo llama ASP.NET. Puede llamar al WebAuthenticationFailureAuditEvent constructor al derivar de la WebAuthenticationFailureAuditEvent clase .
Se aplica a
WebAuthenticationFailureAuditEvent(String, Object, Int32, Int32, String)
Inicializa una nueva instancia de la clase WebAuthenticationFailureAuditEvent con los parámetros de evento especificados.
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)
Parámetros
- message
- String
Descripción del evento.
- eventSource
- Object
El objeto que es el origen del evento.
- eventCode
- Int32
Código asociado al evento. Cuando se implementa un evento personalizado, el código del evento debe ser mayor que WebExtendedBase.
- eventDetailCode
- Int32
Valor de WebEventCodes, que especifica el identificador detallado del evento.
- nameToAuthenticate
- String
Nombre del usuario que se va a autenticar.
Ejemplos
En el ejemplo de código siguiente se muestra cómo personalizar este constructor.
// 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
El WebAuthenticationFailureAuditEvent constructor no está pensado para usarse directamente desde el código. Lo llama ASP.NET. Puede llamar al WebAuthenticationFailureAuditEvent constructor al derivar de la WebAuthenticationFailureAuditEvent clase .