Domain.CreateTrustRelationship(Domain, TrustDirection) Method

Definition

Creates both sides of a trust relationship with the specified domain.

public:
 void CreateTrustRelationship(System::DirectoryServices::ActiveDirectory::Domain ^ targetDomain, System::DirectoryServices::ActiveDirectory::TrustDirection direction);
public void CreateTrustRelationship (System.DirectoryServices.ActiveDirectory.Domain targetDomain, System.DirectoryServices.ActiveDirectory.TrustDirection direction);
member this.CreateTrustRelationship : System.DirectoryServices.ActiveDirectory.Domain * System.DirectoryServices.ActiveDirectory.TrustDirection -> unit
Public Sub CreateTrustRelationship (targetDomain As Domain, direction As TrustDirection)

Parameters

targetDomain
Domain

A Domain object that represents the domain that the trust is being created with.

direction
TrustDirection

One of the TrustDirection members that determines the direction of the trust, relative to this domain.

Exceptions

The trust relationship already exists.

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

The target server is either busy or unavailable.

targetDomain is null.

direction is not a valid TrustDirection value.

The object has been disposed.

The specified account does not have permission to perform this operation.

Remarks

This method creates both sides of a trust relationship with a single method call. The Domain.CreateLocalSideOfTrustRelationship method is used to create only one side of a trust.

Applies to

See also