AuthenticatingEventArgs.UserName プロパティ

定義

ユーザーの認証名を取得します。

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

プロパティ値

検証するユーザー名。

次の例は、 プロパティの値に基づいて使用するメンバーシップ プロバイダーを選択するイベント ハンドラーを UserName 示しています。 ハンドラーは、カスタム メンバーシップ プロバイダーに 値と Password 値を渡UserNameして、ユーザーの資格情報を検証します。 メソッドの戻り値に設定Authenticatedし、 クラスが資格情報をAuthenticationService検証しないように を にtrue設定AuthenticationIsCompleteValidateUserします。

void AuthenticationService_Authenticating(object sender, System.Web.ApplicationServices.AuthenticatingEventArgs e)
{
    if (e.UserName.IndexOf("@contoso.com") >= 0)
    {
        e.Authenticated = Membership.Providers["ContosoSqlProvider"].ValidateUser(e.UserName, e.Password);
    }
    else if (e.UserName.IndexOf("@fabrikam.com") >= 0)
    {
        e.Authenticated = Membership.Providers["FabrikamSqlProvider"].ValidateUser(e.UserName, e.Password);
    }
    else
    {
        e.Authenticated = Membership.Provider.ValidateUser(e.UserName, e.Password);
    }
    e.AuthenticationIsComplete = true;
}
Sub AuthenticationService_Authenticating _
   (ByVal sender As Object, _
    ByVal e As System.Web.ApplicationServices.AuthenticatingEventArgs)
    
    If (e.Username.IndexOf("@contoso.com") >= 0) Then
        e.Authenticated = Membership.Providers("ContosoSqlProvider").ValidateUser(e.Username, e.Password)
    ElseIf (e.Username.IndexOf("@fabrikam.com") >= 0) Then
        e.Authenticated = Membership.Providers("FabrikamSqlProvider").ValidateUser(e.Username, e.Password)
    Else
        e.Authenticated = Membership.Provider.ValidateUser(e.Username, e.Password)
    End If
    e.AuthenticationIsComplete = True
End Sub

注釈

イベント中に UserName 認証名を取得するには、 プロパティを Authenticating 使用します。

適用対象

こちらもご覧ください