ComputerPrincipal.FindByIdentity Method

Definition

Returns a computer principal object that matches the specified identity value.

Overloads

FindByIdentity(PrincipalContext, String)

Returns a computer principal object that matches the specified identity value.

FindByIdentity(PrincipalContext, IdentityType, String)

Returns a computer principal object that matches the specified identity type and value. This version of the FindByIdentity method determines the format of the identity value.

FindByIdentity(PrincipalContext, String)

Source:
Computer.cs
Source:
Computer.cs
Source:
Computer.cs
Source:
Computer.cs

Returns a computer principal object that matches the specified identity value.

public:
 static System::DirectoryServices::AccountManagement::ComputerPrincipal ^ FindByIdentity(System::DirectoryServices::AccountManagement::PrincipalContext ^ context, System::String ^ identityValue);
public static System.DirectoryServices.AccountManagement.ComputerPrincipal FindByIdentity (System.DirectoryServices.AccountManagement.PrincipalContext context, string identityValue);
static member FindByIdentity : System.DirectoryServices.AccountManagement.PrincipalContext * string -> System.DirectoryServices.AccountManagement.ComputerPrincipal
Public Shared Function FindByIdentity (context As PrincipalContext, identityValue As String) As ComputerPrincipal

Parameters

context
PrincipalContext

The PrincipalContext that specifies the server or domain against which operations are performed.

identityValue
String

The identity of the computer. This parameter can be any format that is contained in the IdentityType enumeration.

Returns

A ComputerPrincipal object that matches the specified identity value, or null if no matches are found.

Exceptions

Multiple computer principal objects matching the current computer object were found.

Applies to

FindByIdentity(PrincipalContext, IdentityType, String)

Source:
Computer.cs
Source:
Computer.cs
Source:
Computer.cs
Source:
Computer.cs

Returns a computer principal object that matches the specified identity type and value. This version of the FindByIdentity method determines the format of the identity value.

public:
 static System::DirectoryServices::AccountManagement::ComputerPrincipal ^ FindByIdentity(System::DirectoryServices::AccountManagement::PrincipalContext ^ context, System::DirectoryServices::AccountManagement::IdentityType identityType, System::String ^ identityValue);
public static System.DirectoryServices.AccountManagement.ComputerPrincipal FindByIdentity (System.DirectoryServices.AccountManagement.PrincipalContext context, System.DirectoryServices.AccountManagement.IdentityType identityType, string identityValue);
static member FindByIdentity : System.DirectoryServices.AccountManagement.PrincipalContext * System.DirectoryServices.AccountManagement.IdentityType * string -> System.DirectoryServices.AccountManagement.ComputerPrincipal
Public Shared Function FindByIdentity (context As PrincipalContext, identityType As IdentityType, identityValue As String) As ComputerPrincipal

Parameters

context
PrincipalContext

The PrincipalContext that specifies the server or domain against which operations are performed.

identityType
IdentityType

A IdentityType enumeration value that specifies the format of the identityValue parameter.

identityValue
String

The identity of the computer. This parameter can be any format that is contained in the IdentityType enumeration.

Returns

A ComputerPrincipal object that matches the specified identity value and type, or null if no matches are found.

Exceptions

Multiple computer principal objects matching the current computer object were found.

The identity value is not a valid IdentityType enumeration value.

Applies to