IAccountServiceGetAccountInfos Method |
Gets limited information about the specified accounts.
Namespace: Dundas.BI.AccountServicesAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
SyntaxIDictionary<Guid, MemberInfo> GetAccountInfos(
ICollection<Guid> accountIds
)
Function GetAccountInfos (
accountIds As ICollection(Of Guid)
) As IDictionary(Of Guid, MemberInfo)
IDictionary<Guid, MemberInfo^>^ GetAccountInfos(
ICollection<Guid>^ accountIds
)
abstract GetAccountInfos :
accountIds : ICollection<Guid> -> IDictionary<Guid, MemberInfo> Parameters
- accountIds ICollectionGuid
- The account IDs.
Return Value
IDictionaryGuid,
MemberInfo
A dictionary which maps the provided account IDs to the corresponding
MemberInfo objects.
Exceptions
Remarks Caution |
|---|
|
The dictionary returned by this method may be read-only, and so callers should not attempt to add
or remove items from it.
|
If an account corresponding to one of the provided IDs cannot be found or is not visible to the caller,
the value of Name
and DisplayName in the corresponding value will be .
This method caches results in memory, and therefore may return out-of-date results for a short period
after an account's properties have been changed.
See Also