FormsAuthenticationUser(String, String) 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
전달된 매개 변수를 사용하여 FormsAuthenticationUser 클래스의 새 인스턴스를 초기화합니다.
public:
FormsAuthenticationUser(System::String ^ name, System::String ^ password);
public FormsAuthenticationUser (string name, string password);
new System.Web.Configuration.FormsAuthenticationUser : string * string -> System.Web.Configuration.FormsAuthenticationUser
Public Sub New (name As String, password As String)
매개 변수
- name
- String
사용자 이름입니다.
- password
- String
사용자 암호입니다.
예제
다음 코드 예제에는 만드는 방법을 보여 줍니다는 FormsAuthenticationUser 개체입니다.
// Define the user name.
string name = "userName";
// Define the encrypted password.
string password =
"5BAA61E4C9B93F3F0682250B6CF8331B7EE68FD8";
// Create a new FormsAuthenticationUser object.
FormsAuthenticationUser newformsAuthenticationUser =
new FormsAuthenticationUser(name, password);
' Define the user name.
Dim name As String = "userName"
' Define the encrypted password.
Dim password As String = _
"5BAA61E4C9B93F3F0682250B6CF8331B7EE68FD8"
' Create a new FormsAuthenticationUser object.
Dim newformsAuthenticationUser _
As New FormsAuthenticationUser(name, password)
설명
이 생성자는 FormsAuthenticationUser 전달된 된 매개 변수를 사용 하 여 개체입니다.