.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Convenience method to create an AttributeInfo.

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

Syntax

C#
public static ConnectorAttributeInfo Build(
	string name,
	Type type,
	ConnectorAttributeInfo..::..Flags flags
)

Parameters

name
Type: System..::..String
The name of the attribute
type
Type: System..::..Type
The type of the attribute
flags
Type: Org.IdentityConnectors.Framework.Common.Objects..::..ConnectorAttributeInfo..::..Flags
The flags for the attribute. Null means clear all flags

Return Value

Type: ConnectorAttributeInfo
The attribute info

Remarks

Equivalent to
 Copy imageCopy
new AttributeInfoBuilder(name,type).setFlags(flags).build()

See Also