AuthenticateEventArgs.Authenticated プロパティ

定義

ユーザーの認証が成功したかどうかを示す値を取得または設定します。

public:
 property bool Authenticated { bool get(); void set(bool value); };
public bool Authenticated { get; set; }
member this.Authenticated : bool with get, set
Public Property Authenticated As Boolean

プロパティ値

認証が成功した場合は true。それ以外の場合は false

次のコード例では、 Authenticated プロパティとカスタム認証スキームを使用して、ユーザーのログイン試行の成功または失敗を示します。

<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
private bool SiteSpecificAuthenticationMethod(string UserName, string Password)
{
    // Insert code that implements a site-specific custom 
    // authentication method here.
    //
    // This example implementation always returns false.
    return false;
}

private void OnAuthenticate(object sender, AuthenticateEventArgs e)
{
    bool Authenticated = false;
    Authenticated = SiteSpecificAuthenticationMethod(Login1.UserName, Login1.Password);

    e.Authenticated = Authenticated;
}

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="form1" runat="server">
            <asp:Login id="Login1" runat="server"
                OnAuthenticate="OnAuthenticate">
            </asp:Login>
        </form>
    </body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
Function SiteSpecificAuthenticationMethod(ByVal UserName As String, ByVal Password As String) As Boolean
    ' Insert code that implements a site-specific custom 
    ' authentication method here.
    '
    ' This example implementation always returns false.
    Return False
End Function

Sub OnAuthenticate(ByVal sender As Object, ByVal e As AuthenticateEventArgs)
    Dim Authenticated As Boolean
    Authenticated = SiteSpecificAuthenticationMethod(Login1.UserName, Login1.Password)

    e.Authenticated = Authenticated
End Sub


</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="form1" runat="server">
            <asp:Login id="Login1" runat="server"
                OnAuthenticate="OnAuthenticate">
            </asp:Login>

        </form>
    </body>
</html>

注釈

Authenticatedイベント ハンドラーに実装されているカスタム認証スキームの プロパティをLogin.Authenticate使用して、ユーザーのログイン試行の成功または失敗を示します。

プロパティを Authenticatedfalse 設定すると、Web サイト ユーザーが有効な資格情報を提示していないため、 Login コントロールはログイン試行が成功しなかったことを示すテキストを表示するだけでなく、イベントを発生させる LoginError 必要があります。 LoginErrorイベントを使用すると、ページ開発者は、ユーザー認証が成功しなかったときに追加のプロセスまたはアクションを実行できます。 を にtrue設定Authenticatedすると、ユーザーが有効な資格情報を提示し、コントロールがイベントをLoginLoggedIn発生させ、ユーザーを現在のページまたは でDestinationPageUrl示されるページにリダイレクトする必要があります。

適用対象

こちらもご覧ください