NTAccount 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 NTAccount 類別的新執行個體。
多載
NTAccount(String) |
使用指定的名稱,初始化 NTAccount 類別的新執行個體。 |
NTAccount(String, String) |
使用指定的網域名稱和帳戶名稱,初始化 NTAccount 類別的新執行個體。 |
NTAccount(String)
使用指定的名稱,初始化 NTAccount 類別的新執行個體。
public:
NTAccount(System::String ^ name);
public NTAccount (string name);
new System.Security.Principal.NTAccount : string -> System.Security.Principal.NTAccount
Public Sub New (name As String)
參數
例外狀況
name
為 null
。
備註
指定的名稱不需要對應至現有的帳戶或群組,但除非帳戶或群組存在,否則無法轉譯成其他 IdentityReference衍生類型。
適用於
NTAccount(String, String)
使用指定的網域名稱和帳戶名稱,初始化 NTAccount 類別的新執行個體。
public:
NTAccount(System::String ^ domainName, System::String ^ accountName);
public NTAccount (string domainName, string accountName);
new System.Security.Principal.NTAccount : string * string -> System.Security.Principal.NTAccount
Public Sub New (domainName As String, accountName As String)
參數
- domainName
- String
網域名稱。 這個參數可以是 null
或空字串。 如果網域名稱為 null 值,則會將其視為空字串。
- accountName
- String
帳戶的名稱。 這個參數不可以是 null
或空字串。
例外狀況
accountName
為 null
。
備註
除非帳戶或群組存在,否則不需要指定的網域和帳戶名稱對應至現有的帳戶或群組,但無法轉譯成其他 IdentityReference衍生類型。