共用方式為


IdentitySection.Password 屬性

定義

取得或設定值,表示用於模擬的密碼。

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"

備註

因為密碼會以純文字儲存,所以伺服器所在網域上具有適當認證的已驗證使用者可以讀取密碼。

注意

基於安全性考慮,身分識別區段支援加密 UserNamePassword 的儲存體。

適用於