IMultiTenancyServiceGetTenantInfo Method (Guid, Boolean) | 
 Gets minimal information about the tenant with the specified ID.
 
    Namespace: 
   Dundas.BI.AccountServices.MultiTenancy
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
SyntaxTenantInfo GetTenantInfo(
	Guid id,
	bool throwIfNotFound
)
Function GetTenantInfo ( 
	id As Guid,
	throwIfNotFound As Boolean
) As TenantInfo
TenantInfo^ GetTenantInfo(
	Guid id, 
	bool throwIfNotFound
)
abstract GetTenantInfo : 
        id : Guid * 
        throwIfNotFound : bool -> TenantInfo 
Parameters
- id
 - Type: SystemGuid
The ID of the tenant. - throwIfNotFound
 - Type: SystemBoolean
Specifies whether an exception will be thrown if the specified tenant is not found. 
Return Value
Type: 
TenantInfoThe tenant corresponding to the specified ID.
Exceptions
Remarks
            If 
throwIfNotFound is 
, and a tenant with the specified ID was not found, this method will return
            a 
TenantInfo object with only the 
Id property populated.
            
See Also