ITenantsProviderGetById Method |
Retrieves a list of tenants having the specified IDs.
Namespace:
Dundas.BI.AccountServices.Extensibility
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax ICollection<TenantData> GetById(
ICollection<Guid> tenantIds
)
Function GetById (
tenantIds As ICollection(Of Guid)
) As ICollection(Of TenantData)
ICollection<TenantData^>^ GetById(
ICollection<Guid>^ tenantIds
)
abstract GetById :
tenantIds : ICollection<Guid> -> ICollection<TenantData>
Parameters
- tenantIds
- Type: System.Collections.GenericICollectionGuid
The IDs of the tenants to retrieve.
Return Value
Type:
ICollectionTenantDataThe requested tenants.
Remarks
Any requested tenants which are not found should just be omitted from the result (i.e. no error
should be thrown).
See Also