WebAuthenticationFailureAuditEvent Costruttori
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inizializza una nuova istanza della classe WebAuthenticationFailureAuditEvent.
Overload
WebAuthenticationFailureAuditEvent(String, Object, Int32, String) |
Inizializza una nuova istanza della classe WebAuthenticationFailureAuditEvent con i parametri di evento specificati. |
WebAuthenticationFailureAuditEvent(String, Object, Int32, Int32, String) |
Inizializza una nuova istanza della classe WebAuthenticationFailureAuditEvent con i parametri di evento specificati. |
WebAuthenticationFailureAuditEvent(String, Object, Int32, String)
Inizializza una nuova istanza della classe WebAuthenticationFailureAuditEvent con i parametri di evento specificati.
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)
Parametri
- message
- String
Descrizione dell'evento.
- eventSource
- Object
Oggetto che è l'origine dell'evento.
- eventCode
- Int32
Valore WebEventCodes associato all'evento.
- nameToAuthenticate
- String
Nome dell'utente da autenticare.
Esempio
Nell'esempio di codice seguente viene illustrato come personalizzare questo costruttore.
// 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
Commenti
Il WebAuthenticationFailureAuditEvent costruttore non deve essere usato direttamente dal codice. Viene chiamato da ASP.NET. È possibile chiamare il WebAuthenticationFailureAuditEvent costruttore durante la WebAuthenticationFailureAuditEvent derivazione dalla classe .
Si applica a
WebAuthenticationFailureAuditEvent(String, Object, Int32, Int32, String)
Inizializza una nuova istanza della classe WebAuthenticationFailureAuditEvent con i parametri di evento specificati.
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)
Parametri
- message
- String
Descrizione dell'evento.
- eventSource
- Object
Oggetto che è l'origine dell'evento.
- eventCode
- Int32
Codice associato all'evento. Quando si implementa un evento personalizzato, il codice evento deve essere maggiore di WebExtendedBase.
- eventDetailCode
- Int32
Valore WebEventCodes che specifica l'identificatore dettagliato dell'evento.
- nameToAuthenticate
- String
Nome dell'utente da autenticare.
Esempio
Nell'esempio di codice seguente viene illustrato come personalizzare questo costruttore.
// 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
Commenti
Il WebAuthenticationFailureAuditEvent costruttore non deve essere usato direttamente dal codice. Viene chiamato da ASP.NET. È possibile chiamare il WebAuthenticationFailureAuditEvent costruttore durante la WebAuthenticationFailureAuditEvent derivazione dalla classe .