다음을 통해 공유


ClientFormsAuthenticationCredentials 클래스

정의

클라이언트 애플리케이션 서비스를 사용한 폼 인증을 위한 사용자 로그인 정보를 나타냅니다.

public ref class ClientFormsAuthenticationCredentials
public class ClientFormsAuthenticationCredentials
type ClientFormsAuthenticationCredentials = class
Public Class ClientFormsAuthenticationCredentials
상속
ClientFormsAuthenticationCredentials

예제

다음 예제 코드를 구현 하는 방법에 설명 합니다 IClientFormsAuthenticationCredentialsProvider.GetCredentials 메서드를이 클래스의 인스턴스를 반환 합니다. 이 예제는 GetCredentials 메서드는 로그인 대화 상자 클래스의 일부입니다. 메서드는 대화 상자를 표시 한 다음 반환을 ClientFormsAuthenticationCredentials 인스턴스 사용자 지정 값으로 초기화 합니다.

public ClientFormsAuthenticationCredentials GetCredentials()
{
    if (this.ShowDialog() == DialogResult.OK)
    {
        return new ClientFormsAuthenticationCredentials(
            usernameTextBox.Text, passwordTextBox.Text,
            rememberMeCheckBox.Checked);
    }
    else
    {
        return null;
    }
}
Public Function GetCredentials() As  _
    ClientFormsAuthenticationCredentials Implements _
    IClientFormsAuthenticationCredentialsProvider.GetCredentials

    If Me.ShowDialog() = DialogResult.OK Then
        Return New ClientFormsAuthenticationCredentials( _
            UsernameTextBox.Text, PasswordTextBox.Text, _
            rememberMeCheckBox.Checked)
    Else
        Return Nothing
    End If

End Function

설명

합니다 ClientFormsAuthenticationCredentials 클래스를 사용 합니다 IClientFormsAuthenticationCredentialsProvider 인터페이스입니다. 이 클래스의 채워진된 인스턴스를 반환 해야이 인터페이스를 구현 하는 경우에 GetCredentials 구현 합니다.

생성자

ClientFormsAuthenticationCredentials(String, String, Boolean)

ClientFormsAuthenticationCredentials 클래스의 새 인스턴스를 초기화합니다.

속성

Password

사용자 암호를 가져오거나 설정합니다.

RememberMe

사용자 자격 증명을 저장하여 후속 로그인 시도에 다시 사용해야 하는지 여부를 나타내는 값을 가져오거나 설정합니다.

UserName

사용자 이름을 가져오거나 설정합니다.

메서드

Equals(Object)

지정된 개체가 현재 개체와 같은지 확인합니다.

(다음에서 상속됨 Object)
GetHashCode()

기본 해시 함수로 작동합니다.

(다음에서 상속됨 Object)
GetType()

현재 인스턴스의 Type을 가져옵니다.

(다음에서 상속됨 Object)
MemberwiseClone()

현재 Object의 단순 복사본을 만듭니다.

(다음에서 상속됨 Object)
ToString()

현재 개체를 나타내는 문자열을 반환합니다.

(다음에서 상속됨 Object)

적용 대상

추가 정보