Microsoft Identity Integration Server 2003 Developer Reference

ReferenceValue.Concat (ReferenceValue)

The Concat(ReferenceValue) method creates a new ReferenceValue object by appending the distinguished name of another ReferenceValue object to the distinguished name of this ReferenceValue object.
[C#]
public ReferenceValue Concat(
  ReferenceValue DN
);
[Visual Basic .NET]
Public Function Concat( _
  ByVal DN As ReferenceValue _
) As ReferenceValue

Parameters

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

Return Values

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
ArgumentNullException The argument is null.

Requirements

Product: Microsoft Identity Integration Server 2003
Namespace: Defined in Microsoft.MetadirectoryServices.
Assembly: Requires Microsoft.MetadirectoryServices (in Microsoft.MetadirectoryServices.dll).
.NET Framework: Requires .NET Framework 1.1.

See Also

ReferenceValue