IdentitySection.UserName 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,表示用於模擬的使用者名稱。
public:
property System::String ^ UserName { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("userName", DefaultValue="")]
public string UserName { get; set; }
[<System.Configuration.ConfigurationProperty("userName", DefaultValue="")>]
member this.UserName : string with get, set
Public Property UserName As String
屬性值
用於模擬的使用者名稱。
- 屬性
範例
下列程式碼範例示範如何存取 UserName 屬性。 請參閱 類別的程式 IdentitySection 代碼範例,以瞭解如何存取 區段。
// Get the UserName property value.
string currentUserName = identitySection.UserName;
// Set the UserName property value.
identitySection.UserName = "userName";
' Get the UserName property value.
Dim currentUserName As String = identitySection.UserName
' Set the UserName property value.
identitySection.UserName = "userName"
備註
由於使用者名稱會以純文字儲存,因此在伺服器所在網域上具有適當認證的已驗證使用者可以讀取它。