다음을 통해 공유


UserNamePasswordValidator.Validate(String, String) 메서드

정의

파생 클래스에서 재정의되는 경우 지정된 사용자 이름과 암호의 유효성을 검사합니다.

public:
 abstract void Validate(System::String ^ userName, System::String ^ password);
public abstract void Validate (string userName, string password);
abstract member Validate : string * string -> unit
Public MustOverride Sub Validate (userName As String, password As String)

매개 변수

userName
String

유효성을 검사할 사용자 이름입니다.

password
String

유효성을 검사할 암호입니다.

예제

// This method validates users. It allows two users, test1 and test2
// with passwords 1tset and 2tset respectively.
// This code is for illustration purposes only and
// MUST NOT be used in a production environment because it is NOT secure.	
public override void Validate(string userName, string password)
{
    if (null == userName || null == password)
    {
        throw new ArgumentNullException();
    }

    if (!(userName == "test1" && password == "1tset") && !(userName == "test2" && password == "2tset"))
    {
        throw new SecurityTokenException("Unknown Username or Password");
    }
}
' This method validates users. It allows two users, test1 and test2 
' with passwords 1tset and 2tset respectively.
' This code is for illustration purposes only and 
' MUST NOT be used in a production environment because it is NOT secure.	
Public Overrides Sub Validate(ByVal userName As String, ByVal password As String)
    If Nothing = userName OrElse Nothing = password Then
        Throw New ArgumentNullException()
    End If

    If Not (userName = "test1" AndAlso password = "1tset") AndAlso Not (userName = "test2" AndAlso password = "2tset") Then
        Throw New SecurityTokenException("Unknown Username or Password")
    End If

End Sub

설명

사용자 이름과 암호의 유효성을 검사하는 방법을 지정하려면 Validate 메서드를 재정의합니다. 사용자 이름과 암호가 유효성 검사를 통과하지 않으면 SecurityTokenValidationException을 throw합니다.

적용 대상