IdentitySection.Password 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
가장에 사용할 암호를 나타내는 값을 가져오거나 설정합니다.
public:
property System::String ^ Password { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("password", DefaultValue="")]
public string Password { get; set; }
[<System.Configuration.ConfigurationProperty("password", DefaultValue="")>]
member this.Password : string with get, set
Public Property Password As String
속성 값
가장에 사용할 암호입니다.
- 특성
예제
다음 코드 예제에서는 Password 속성에 액세스하는 방법을 보여 줍니다. 코드 예제를 참조 하십시오는 IdentitySection 클래스 섹션에 액세스 하는 방법을 알아봅니다.
// Get the Password property value.
string currentPassword = identitySection.Password;
// Set the Password property value.
identitySection.Password = "userPassword";
' Get the Password property value.
Dim currentPassword As String = identitySection.Password
' Set the Password property value.
identitySection.Password = "userPassword"
설명
암호에 일반 텍스트로 저장 되므로 해당 서버가 있는 도메인에서 적절 한 자격 증명을 사용 하 여 인증된 된 사용자 읽을 수 있습니다.