ClientFormsAuthenticationCredentials(String, String, Boolean) 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ClientFormsAuthenticationCredentials 클래스의 새 인스턴스를 초기화합니다.
public:
ClientFormsAuthenticationCredentials(System::String ^ username, System::String ^ password, bool rememberMe);
public ClientFormsAuthenticationCredentials (string username, string password, bool rememberMe);
new System.Web.ClientServices.Providers.ClientFormsAuthenticationCredentials : string * string * bool -> System.Web.ClientServices.Providers.ClientFormsAuthenticationCredentials
Public Sub New (username As String, password As String, rememberMe As Boolean)
매개 변수
- username
- String
사용자 이름입니다.
- password
- String
사용자 암호
- rememberMe
- Boolean
사용자 자격 증명을 저장하여 후속 로그인 시도에 다시 사용해야 하는지 여부를 나타내는 값입니다.
예제
다음 예제 코드를 구현 하는 방법에 설명 합니다 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
설명
일반적으로 사용자가 제공한 값이이 생성자의 매개 변수로 전달 합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET