AuthenticatingEventArgs.CustomCredential プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ユーザーの認証に使用される追加の値を取得します。
public:
property System::String ^ CustomCredential { System::String ^ get(); };
public string CustomCredential { get; }
member this.CustomCredential : string
Public ReadOnly Property CustomCredential As String
プロパティ値
認証に必要な、ユーザー名とパスワード以外の値。
例
次の例は、 プロパティから 2 つの認証値を Authenticating 解析する イベントのイベント ハンドラーを CustomCredential 示しています。 2 つの値とユーザー名とパスワードを という名前 StudentAuthentication
のカスタム認証クラスに渡します。
void AuthenticationService_Authenticating(object sender, System.Web.ApplicationServices.AuthenticatingEventArgs e)
{
string studentid = String.Empty;
string answer = String.Empty;
string[] credentials =
e.CustomCredential.Split(new char[] { ',' });
if (credentials.Length > 0)
{
studentid = credentials[0];
if (credentials.Length > 1)
{
answer = credentials[1];
}
}
try
{
e.Authenticated =
StudentAuthentication.ValidateStudentCredentials
(e.UserName, e.Password, studentid, answer);
}
catch (ArgumentNullException ex)
{
e.Authenticated = false;
}
e.AuthenticationIsComplete = true;
}
Sub AuthenticationService_Authenticating _
(ByVal sender As Object, _
ByVal e As System.Web.ApplicationServices.AuthenticatingEventArgs)
Dim studentid As String = String.Empty
Dim answer As String = String.Empty
Dim credentials As String() = _
e.CustomCredential.Split(New Char() {","c})
If (credentials.Length > 0) Then
studentid = credentials(0)
If (credentials.Length > 1) Then
answer = credentials(1)
End If
End If
Try
e.Authenticated = _
StudentAuthentication.ValidateStudentCredentials _
(e.Username, e.Password, studentid, answer)
Catch ex As ArgumentNullException
e.Authenticated = False
End Try
e.AuthenticationIsComplete = True
End Sub
注釈
プロパティを CustomCredential 使用すると、イベント中にユーザー名とパスワード以外の認証値を Authenticating 取得できます。 たとえば、ユーザー名とパスワードと共に識別番号を検証するようにアプリケーションを構成できます。 その場合、ID 番号は メソッドの Login パラメーターにCustomCredential
渡されます。 その後、 プロパティを使用してカスタム値を CustomCredential 取得できます。
プロパティには CustomCredential 、 メソッドに渡されるのと同じ形式でカスタマイズされた値が Login 含まれます。 イベント ハンドラーで、 プロパティに Authenticating 複数の値が格納されている場合は、 プロパティの値を解析して値を CustomCredential 取得する必要があります。
適用対象
こちらもご覧ください
.NET