共用方式為


ProcessModelSection.Password 屬性

定義

取得或設定值,表示用於 Windows 識別的密碼。

public:
 property System::String ^ Password { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("password", DefaultValue="AutoGenerate")]
public string Password { get; set; }
[<System.Configuration.ConfigurationProperty("password", DefaultValue="AutoGenerate")>]
member this.Password : string with get, set
Public Property Password As String

屬性值

要使用的密碼。 預設值為 AutoGenerate。

屬性

範例

下列程式碼範例示範如何存取 Password 屬性。


// Get the current Password property value.
string password = 
    processModelSection.Password;

// Set the Password property to "CUPassword".
processModelSection.Password = "CUPassword";
' Get the current Password property value.
   Dim password As String = _
   processModelSection.Password

' Set the Password property to "CUPassword".
processModelSection.Password = "CUPassword"

備註

屬性 Password 必須與 屬性搭配 UserName 使用。

當存在時,這些屬性值會導致背景工作進程以設定的 Windows 身分識別執行。

適用於

另請參閱