.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Assembly: Framework (in Framework.dll) Version: 1.4.0.0 (1.4.0.0)
The attribute info
E41516-01
Convenience method to create an AttributeInfo.
Namespace: Org.IdentityConnectors.Framework.Common.ObjectsAssembly: 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: ConnectorAttributeInfoThe attribute info
Remarks
Equivalent to
Copy | |
---|---|
new AttributeInfoBuilder(name,type).setFlags(flags).build() |