IdmNetClientAddValueAsync Method |
Add a value to a multi-valued attribute in the Identity Manager service (async await)
Namespace: IdmNetAssembly: IdmNet (in IdmNet.dll) Version: 1.3.0.0 (1.3.0)
Syntaxpublic Task<Message> AddValueAsync(
string objectID,
string attrName,
string attrValue
)
Public Function AddValueAsync (
objectID As String,
attrName As String,
attrValue As String
) As Task(Of Message)
public:
virtual Task<Message^>^ AddValueAsync(
String^ objectID,
String^ attrName,
String^ attrValue
) sealed
abstract AddValueAsync :
objectID : string *
attrName : string *
attrValue : string -> Task<Message>
override AddValueAsync :
objectID : string *
attrName : string *
attrValue : string -> Task<Message>
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:
TaskMessageTask (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