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 (25.3.0.1000)
SyntaxIDictionary<Guid, TenantInfo> GetTenantInfos(
	ICollection<Guid> tenantIds
)
Function GetTenantInfos ( 
	tenantIds As ICollection(Of Guid)
) As IDictionary(Of Guid, TenantInfo)
IDictionary<Guid, TenantInfo^>^ GetTenantInfos(
	ICollection<Guid>^ tenantIds
)
abstract GetTenantInfos : 
        tenantIds : ICollection<Guid> -> IDictionary<Guid, TenantInfo> 
Parameters
- tenantIds
 - Type: System.Collections.GenericICollectionGuid
The IDs of the tenants to retrieve. 
Return Value
Type: 
IDictionaryGuid, 
TenantInfo
            A dictionary (keyed by tenant ID) containing the corresponding 
TenantInfo
            or 
 if tenant does not exist.
            
Exceptions
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