다음을 통해 공유


FormsAuthenticationUser(String, String) 생성자

정의

전달된 매개 변수를 사용하여 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 전달된 된 매개 변수를 사용 하 여 개체입니다.

적용 대상