IIdmNetClientReplaceValueAsync Method |
Replace/Set the value for a single-valued attribute in the Identity Manager service (async await)
Namespace: IdmNetAssembly: IdmNet (in IdmNet.dll) Version: 1.3.0.0 (1.3.0)
SyntaxTask<Message> ReplaceValueAsync(
string objectID,
string attrName,
string attrValue
)
Function ReplaceValueAsync (
objectID As String,
attrName As String,
attrValue As String
) As Task(Of Message)
Task<Message^>^ ReplaceValueAsync(
String^ objectID,
String^ attrName,
String^ attrValue
)
abstract ReplaceValueAsync :
objectID : string *
attrName : string *
attrValue : string -> Task<Message>
Parameters
- objectID
- Type: SystemString
Resource ID for the object containing the single-valued attribute - attrName
- Type: SystemString
Name of the Single-Valued attribute which will have its value set/replaced - attrValue
- Type: SystemString
Value to be set for the Single-Valued attribute
Return Value
Type:
TaskMessageTask (async/await) of the asynchronous operation
Remarks
While all attributes in an IdmResource are technically multi-valued, this method only works on attributes
that are marked as single-valued in the Identity Manager service.
See Also