Microsoft Identity Integration Server 2003 Developer Reference

ReferenceValue.Item

The Item property retrieves an individual component of the distinguished name.
[C#]
public String this[
  Int32 componentIndex
] {get;}
[Visual Basic .NET]
Public ReadOnly Property Item( _
  ByVal componentIndex As Int32 _
) As String

Parameters

componentIndex
The zero-based index of the distinguished name component to retrieve.

Exceptions

Exception type Condition
ArgumentOutOfRangeException There is no distinguished name component at the specified componentIndex value.

Remarks

The componentIndex parameter identifies which component of the distinguished name to retrieve, from left to right. For example, in the distinguished name "cn=jeffsmith,dc=fabrikam,dc=com", a componentIndex of 0 will retrieve "cn=jeffsmith" and a componentIndex of 1 will retrieve "dc=fabrikam".

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