.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Transform a
 Copy imageCopy
Collection
of ConnectorAttributeInfo instances into a [!:Map].

Namespace: Org.IdentityConnectors.Framework.Common.Objects
Assembly: Framework (in Framework.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
public static IDictionary<string, ConnectorAttributeInfo> ToMap(
	ICollection<ConnectorAttributeInfo> attributes
)

Parameters

attributes
Type: System.Collections.Generic..::..ICollection<(Of <(<'ConnectorAttributeInfo>)>)>
set of AttributeInfo to transform to a map.

Return Value

Type: IDictionary<(Of <(<'String, ConnectorAttributeInfo>)>)>
a map of string and AttributeInfo.

Remarks

The key to each element in the map is the name of an
 Copy imageCopy
AttributeInfo
. The value of each element in the map is the
 Copy imageCopy
AttributeInfo
instance with that name.

Exceptions

ExceptionCondition
System..::..NullReferenceExceptioniff the parameter attributes is null.

See Also