次の方法で共有


WebProcessInformation.AccountName プロパティ

定義

ワーカー プロセスのアカウント名を取得します。

public:
 property System::String ^ AccountName { System::String ^ get(); };
public string AccountName { get; }
member this.AccountName : string
Public ReadOnly Property AccountName As String

プロパティ値

ワーカー プロセスのアカウント名。

次の例は、プロセス アカウント名を取得する方法を示しています。

public string GetAccountName()
{
    // Get the name of the account.
    return (string.Format(
        "Account name: {0}", 
        ProcessInformation.AccountName));
}
Public Function GetAccountName() As String
   ' Get the name of the account.
     Return String.Format("Account name: {0}", _
     processInformation.AccountName)
End Function 'GetAccountName

注釈

アプリケーションには、このプロパティによって提供される情報にアクセスするための適切なアクセス許可が必要です。

適用対象