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

Комментарии

Приложению требуются соответствующие разрешения для доступа к информации, предоставленной этим свойством.

Применяется к