ApplicationPartition.FindByName(DirectoryContext, String) Method

Definition

Returns an ApplicationPartition object for a given DirectoryContext object and distinguished name.

C#
public static System.DirectoryServices.ActiveDirectory.ApplicationPartition FindByName (System.DirectoryServices.ActiveDirectory.DirectoryContext context, string distinguishedName);

Parameters

context
DirectoryContext

A DirectoryContext object that contains the target and credentials to use for the search.

distinguishedName
String

A String that contains the distinguished name of the application partition to search for.

Returns

An ApplicationPartition object that represents the results of the search.

Exceptions

A target specified in the context parameter could not be found.

-or-

The target is a configuration set and no AD LDS instance was found in that configuration set.

-or-

The target is a forest and the application partition was not found in that forest.

-or-

The target does not host the current application partition.

-or-

No AD LDS instance was found for the application partition.

A call to the underlying directory service resulted in an error.

context or distinguishedName is null.

This exception will occur for any of the following reasons:

  • The context parameter is not a valid forest, configuration set, or directory server.

  • The distinguishedName has a zero length.

  • The distinguishedName parameter is in an invalid format.

Applies to

Produkt Versjoner
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also