Creates a new ReferenceValue object by appending a distinguished name string to the distinguished name of this ReferenceValue object. The string can contain escaped characters.
Namespace: Microsoft.MetadirectoryServices
Assembly: Microsoft.MetadirectoryServicesEx (in microsoft.metadirectoryservicesex.dll)

Usage

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

returnValue = instance.Concat(DN)

Syntax

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

Parameters

DN

Contains a string with escaped characters 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 that is contained in 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