IAccountServiceGetAccount(Guid) Method |
Gets the account with the specified ID.
Namespace: Dundas.BI.AccountServicesAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
SyntaxAccount GetAccount(
Guid id
)
Function GetAccount (
id As Guid
) As Account
Account^ GetAccount(
Guid id
)
abstract GetAccount :
id : Guid -> Account Parameters
- id Guid
- The ID of the account to get.
Return Value
AccountThe account corresponding to the specified ID.
Exceptions| Exception | Condition |
|---|
| ArgumentException | id is Empty. |
| NotFoundException | An account with the specified ID was not found. |
| NoPrivilegeException | The account is not the caller's account. -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