IdentitySection.Impersonate 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出是否在每個要求上都使用用戶端模擬。
public:
property bool Impersonate { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("impersonate", DefaultValue=false)]
public bool Impersonate { get; set; }
[<System.Configuration.ConfigurationProperty("impersonate", DefaultValue=false)>]
member this.Impersonate : bool with get, set
Public Property Impersonate As Boolean
屬性值
如果使用用戶端模擬則為 true
,否則為 false
。 預設值是 false
。
- 屬性
範例
下列程式碼範例示範如何存取 Impersonate 屬性。 請參閱 類別的程式 IdentitySection 代碼範例,以瞭解如何存取 區段。
// Get the Impersonate property value.
bool currentImpersonate = identitySection.Impersonate;
// Set the Impersonate property to true.
identitySection.Impersonate = true;
' Get the Impersonate property value.
Dim currentImpersonate As Boolean = identitySection.Impersonate
' Set the Impersonate property to true.
identitySection.Impersonate = True
備註
Impersonate如果屬性設定為 true
,則每個要求都會由模擬其用戶端的 Web 應用程式提供服務。 也就是說,使用者目前登入或 和 Password 屬性所UserName指定的使用者。
Impersonate當屬性設定為 false
時,應用程式不會模擬任何用戶端使用者。