E41516-01
Assembly: Framework (in Framework.dll) Version: 1.4.0.0 (1.4.0.0)
Syntax
C# |
---|
Uid AddAttributeValues( ObjectClass objclass, Uid uid, ICollection<ConnectorAttribute> valuesToAdd, OperationOptions options ) |
Parameters
- objclass
- Type: Org.IdentityConnectors.Framework.Common.Objects..::..ObjectClass
the type of object to modify. Must not be null.
- uid
- Type: Org.IdentityConnectors.Framework.Common.Objects..::..Uid
the uid of the object to modify. Must not be null.
- valuesToAdd
- Type: System.Collections.Generic..::..ICollection<(Of <(<'ConnectorAttribute>)>)>
set of ConnectorAttribute deltas. The values for the attributes in this set represent the values to add to attributes in the object. merged. This set must not include OperationalAttributes. Must not be null.
- options
- Type: Org.IdentityConnectors.Framework.Common.Objects..::..OperationOptions
additional options that impact the way this operation is run. May be null.
Return Value
Type: Uidthe Uid of the updated object in case the update changes the formation of the unique identifier.
Remarks
For each attribute that the input set contains, add to the current values of that attribute in the target object all of the values of that attribute in the input set.
NOTE that this does not specify how to handle duplicate values. The general assumption for an attribute of a
![]() | |
---|---|
ConnectorObject |
IMPLEMENTATION NOTE: for connectors that merely implement UpdateOp and not UpdateAttributeValuesOp this method will be simulated by fetching, merging, and calling Update(ObjectClass, Uid, ICollection<(Of <<'(ConnectorAttribute>)>>), OperationOptions). Therefore, connector implementations are encourage to implement UpdateAttributeValuesOp from a performance and atomicity standpoint.
Exceptions
Exception | Condition |
---|---|
Org.IdentityConnectors.Framework.Common.Exceptions..::..UnknownUidException | iff the Uid does not exist on the resource. |