IdmNetClientReplaceValueAsync 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)
Syntaxpublic Task<Message> ReplaceValueAsync(
string objectID,
string attrName,
string attrValue
)
Public Function ReplaceValueAsync (
objectID As String,
attrName As String,
attrValue As String
) As Task(Of Message)
public:
virtual Task<Message^>^ ReplaceValueAsync(
String^ objectID,
String^ attrName,
String^ attrValue
) sealed
abstract ReplaceValueAsync :
objectID : string *
attrName : string *
attrValue : string -> Task<Message>
override 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
Implements
IIdmNetClientReplaceValueAsync(String, String, String)
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