Creates a new ReferenceValue object by appending the distinguished name of another ReferenceValue object to the distinguished name of this ReferenceValue object.
Namespace: Microsoft.MetadirectoryServices
Assembly: Microsoft.MetadirectoryServicesEx (in microsoft.metadirectoryservicesex.dll)

Usage

Visual Basic
Dim instance As ReferenceValue
Dim DN As ReferenceValue
Dim returnValue As ReferenceValue

returnValue = instance.Concat(DN)

Syntax

Visual Basic
Public MustOverride Function Concat ( _
		DN As ReferenceValue _
) As ReferenceValue
C#
public abstract ReferenceValue Concat (
		ReferenceValue DN
)
C++
public:
virtual ReferenceValue^ Concat (
		ReferenceValue^ DN
) abstract
J#
public abstract ReferenceValue Concat (
		ReferenceValue DN
)
JScript
public abstract function Concat (
		DN : ReferenceValue
) : ReferenceValue

Parameters

DN

Contains a ReferenceValue object that will be appended to the distinguished name of this ReferenceValue object.

Return Value

Returns a new ReferenceValue object that contains the distinguished name of this ReferenceValue object concatenated with the distinguished name of DN.

Exceptions

Exception type Condition
System.ArgumentNullException

The argument is null.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Target Platforms

See Also