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"
注釈
ユーザー名はクリア テキストで保存されるため、サーバーが存在するドメインで適切な資格情報を持つ認証済みユーザーが読み取ることができます。