次の方法で共有


WebAuthenticationFailureAuditEvent.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 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

注釈

認証されたユーザーの名前を含める必要があるのは、成功監査のみです。 失敗の監査には、通常、暗号化解除または検証が失敗した結果として発生するため、ユーザー名を含めないようにする必要があります。

適用対象

こちらもご覧ください