IAddressManager CheckServiceProviderAccess Method
[This is preliminary documentation and is subject to change.]
Used to check which service providers has access to specific addresses according to the address group rules
If there are no rules at all for the provider, it has access to all addresses
Namespace: Netadmin.Management.Address Assembly: Netadmin.Management.Interfaces (in Netadmin.Management.Interfaces.dll) Version: release/9.0@131b654fe7332b0776120c2b44d96c6cac5ac9a2
SyntaxIReadOnlyDictionary <long , IReadOnlyDictionary <long , bool >> CheckServiceProviderAccess (
IEnumerable <long > addressIds ,
IEnumerable <long > serviceProviderIds
)Function CheckServiceProviderAccess (
addressIds As IEnumerable (Of Long ),
serviceProviderIds As IEnumerable (Of Long )
) As IReadOnlyDictionary (Of Long , IReadOnlyDictionary (Of Long , Boolean ))Parameters addressIds Type: System.Collections.Generic IEnumerable Int64 [Missing <param name="addressIds"/> documentation for "M:Netadmin.Management.Address.IAddressManager.CheckServiceProviderAccess(System.Collections.Generic.IEnumerable{System.Int64},System.Collections.Generic.IEnumerable{System.Int64})"]
serviceProviderIds Type: System.Collections.Generic IEnumerable Int64 [Missing <param name="serviceProviderIds"/> documentation for "M:Netadmin.Management.Address.IAddressManager.CheckServiceProviderAccess(System.Collections.Generic.IEnumerable{System.Int64},System.Collections.Generic.IEnumerable{System.Int64})"]
Return Value Type:
IReadOnlyDictionary Int64 ,
IReadOnlyDictionary Int64 ,
Boolean A correlated dictionary with outer Key=AddressId, inner Key=ServiceProviderId, Value=Boolean flag indicating access
RemarksThis method is guaranteed to always contain each addressId and serviceProviderId which is supplied as input
See Also