IAccountsProvider3RemoveAccountFromTenants Method  | 
 Removes an account from the specified tenants.
 
    Namespace: 
   Dundas.BI.AccountServices.Extensibility
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
SyntaxIDictionary<Guid, bool> RemoveAccountFromTenants(
	Guid accountId,
	ICollection<Guid> tenantIds
)
Function RemoveAccountFromTenants ( 
	accountId As Guid,
	tenantIds As ICollection(Of Guid)
) As IDictionary(Of Guid, Boolean)
IDictionary<Guid, bool>^ RemoveAccountFromTenants(
	Guid accountId, 
	ICollection<Guid>^ tenantIds
)
abstract RemoveAccountFromTenants : 
        accountId : Guid * 
        tenantIds : ICollection<Guid> -> IDictionary<Guid, bool> 
Parameters
- accountId
 - Type: SystemGuid
The ID of the account. - tenantIds
 - Type: System.Collections.GenericICollectionGuid
A collection containing the IDs of all tenants from which the account should be removed. 
Return Value
Type: 
IDictionaryGuid, 
Boolean
            A dictionary representing the result. The keys are tenant IDs. The values are Booleans indicating whether the account
            was successfully removed from the corresponding tenant. If the account was not originally a member of the tenant, the value 
            of the Boolean should be 
.
            
See Also