Microsoft Identity Integration Server 2003 Developer Reference

MVEntry.Item

The Item property retrieves the Attrib object for an attribute in the MVEntry object.
[C#]
public Attrib this[
  string attributeName
] {get;}
[Visual Basic .NET]
Public ReadOnly Property Item( _
  ByVal attributeName As String _
) As Attrib

Parameters

attributeName
Contains a string that identifies the attribute. The attribute name is not case-sensitive.

Exceptions

Exception type Condition
AttributeNotInInclusionListException The attribute in the attributeName parameter is not selected for use by MIIS.
NoSuchAttributeException The attribute in the attributeName parameter is not present in the schema.

Example Code [Visual Basic .NET]

The following example demonstrates how to use this property.

mventry("displayName").Value = "My display name"

Example Code [C#]

The following example demonstrates how to use this property.

mventry["displayName"].Value = "My display name";

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

Attrib, AttributeNotInInclusionListException, MVEntry, NoSuchAttributeException