Condividi tramite


WebProcessInformation.AccountName Proprietà

Definizione

Ottiene il nome account del processo di lavoro.

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

Valore della proprietà

String

Nome account del processo di lavoro.

Esempio

Nell'esempio seguente viene illustrato come ottenere il nome dell'account di processo.

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

Commenti

L'applicazione deve disporre delle autorizzazioni appropriate per accedere alle informazioni fornite da questa proprietà.

Si applica a