ComputerPrincipal 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 ComputerPrincipal 類別的新執行個體。 呼叫 Save() 之前,必須先在物件上設定 Context 屬性。
多載
ComputerPrincipal(PrincipalContext) |
初始化 ComputerPrincipal 類別的新執行個體,並將它指派至指定的內容。 |
ComputerPrincipal(PrincipalContext, String, String, Boolean) |
使用指定的內容、SAM 帳戶名稱、密碼和啟用的值,初始化 ComputerPrincipal 類別的新執行個體。 |
備註
建立計算機主體帳戶時不會保存。 若要保存帳戶,請呼叫 Save 方法。
ComputerPrincipal(PrincipalContext)
- 來源:
- Computer.cs
- 來源:
- Computer.cs
- 來源:
- Computer.cs
初始化 ComputerPrincipal 類別的新執行個體,並將它指派至指定的內容。
public:
ComputerPrincipal(System::DirectoryServices::AccountManagement::PrincipalContext ^ context);
public ComputerPrincipal (System.DirectoryServices.AccountManagement.PrincipalContext context);
new System.DirectoryServices.AccountManagement.ComputerPrincipal : System.DirectoryServices.AccountManagement.PrincipalContext -> System.DirectoryServices.AccountManagement.ComputerPrincipal
Public Sub New (context As PrincipalContext)
參數
- context
- PrincipalContext
針對執行的作業指定伺服器或網域的 PrincipalContext。
備註
建立計算機主體帳戶時不會保存。 若要儲存帳戶,請呼叫 Save 方法。
適用於
ComputerPrincipal(PrincipalContext, String, String, Boolean)
- 來源:
- Computer.cs
- 來源:
- Computer.cs
- 來源:
- Computer.cs
使用指定的內容、SAM 帳戶名稱、密碼和啟用的值,初始化 ComputerPrincipal 類別的新執行個體。
public:
ComputerPrincipal(System::DirectoryServices::AccountManagement::PrincipalContext ^ context, System::String ^ samAccountName, System::String ^ password, bool enabled);
public ComputerPrincipal (System.DirectoryServices.AccountManagement.PrincipalContext context, string samAccountName, string password, bool enabled);
new System.DirectoryServices.AccountManagement.ComputerPrincipal : System.DirectoryServices.AccountManagement.PrincipalContext * string * string * bool -> System.DirectoryServices.AccountManagement.ComputerPrincipal
Public Sub New (context As PrincipalContext, samAccountName As String, password As String, enabled As Boolean)
參數
- context
- PrincipalContext
針對執行的作業指定伺服器或網域的 PrincipalContext。
- samAccountName
- String
這個電腦主體的 SAM 帳戶名稱。
- password
- String
這個帳戶的密碼。
- enabled
- Boolean
布林值,指定是否已經啟用帳戶。
備註
建立計算機主體帳戶時不會保存。 若要保存帳戶,請呼叫 Save 方法。