IMultiTenancyServiceGetTenantInfos Method

Retrieves minimal information about the tenants with the specified IDs.

Namespace: Dundas.BI.AccountServices.MultiTenancy
Assembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntax
IDictionary<Guid, TenantInfo> GetTenantInfos(
	ICollection<Guid> tenantIds
)

Parameters

tenantIds  ICollectionGuid
The IDs of the tenants to retrieve.

Return Value

IDictionaryGuid, TenantInfo
A dictionary (keyed by tenant ID) containing the corresponding TenantInfo or if tenant does not exist.
Exceptions
ExceptionCondition
ArgumentNullExceptiontenantIds is .
FeatureNotEnabledExceptionThe multi-tenancy features of the application are not enabled.
NoPrivilegeExceptionThe caller is not a member of one or more specified tenants.
InvalidSessionExceptionThe caller context is not associated with a valid session.
Remarks
If a tenant corresponding to one of the provided IDs cannot be found, the value of Name in the corresponding value will be .
See Also