Click or drag to resize
IdmNetClientAddValueAsync Method
Add a value to a multi-valued attribute in the Identity Manager service (async await)

Namespace: IdmNet
Assembly: IdmNet (in IdmNet.dll) Version: 1.3.0.0 (1.3.0)
Syntax
public Task<Message> AddValueAsync(
	string objectID,
	string attrName,
	string attrValue
)

Parameters

objectID
Type: SystemString
Resource ID for the object containing the multi-valued attribute
attrName
Type: SystemString
Name of the Multi-Valued attribute to which a value will be added
attrValue
Type: SystemString
Value to be added to the Multi-Valued attribute

Return Value

Type: TaskMessage
Task (async/await) of the asynchronous operation

Implements

IIdmNetClientAddValueAsync(String, String, String)
Remarks
While all attributes in an IdmResource are technically multi-valued, this method only works on attributes that are marked as multi-valued in the Identity Manager service.
See Also