WebProcessInformation.AccountName 属性

定义

获取辅助进程的帐户名。

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

属性值

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

注解

应用程序需要适当的权限才能访问此属性提供的信息。

适用于