IAccountServiceWriteUserDataValues(Guid, IDictionaryString, String) Method |
Updates tenant-agnostic user data values for the specified account.
Namespace: Dundas.BI.AccountServicesAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxvoid WriteUserDataValues(
Guid accountId,
IDictionary<string, string?> userData
)
Sub WriteUserDataValues (
accountId As Guid,
userData As IDictionary(Of String, String)
)
void WriteUserDataValues(
Guid accountId,
IDictionary<String^, String^>^ userData
)
abstract WriteUserDataValues :
accountId : Guid *
userData : IDictionary<string, string> -> unit Parameters
- accountId Guid
- The ID of the account.
- userData IDictionaryString, String
- The user data values to add/update. Items with a value of will be removed from saved user data.
Exceptions| Exception | Condition |
|---|
| ArgumentException | accountId is Empty. -or- One of the keys in the dictionary is Empty, or contains only whitespace. |
| ArgumentNullException | userData is . |
| NotFoundException | An account with the specified ID was not found. |
| InvalidOperationException |
The account corresponding to the specified ID is an External or Windows Group account.
|
| NoPrivilegeException | accountId does not correspond to the account associated with the caller's session. -or- The caller does not have system administration privileges. -or- The account is associated with a tenant, and the caller does not have administration privileges for that tenant. |
| InvalidSessionException | The caller context is not associated with a valid session. |
See Also