共用方式為


IdentitySection.UserName 屬性

定義

取得或設定值,表示用於模擬的使用者名稱。

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"

備註

由於使用者名稱會以純文字儲存,因此在伺服器所在網域上具有適當認證的已驗證使用者可以讀取它。

注意

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

適用於