CSP_CREST.Services.CRESTService.GetEntitlementsAsync C# (CSharp) Method

GetEntitlementsAsync() public method

public GetEntitlementsAsync ( string CustomerId ) : Task>
CustomerId string
return Task>
        public Task<List<Entitlement>> GetEntitlementsAsync(string CustomerId)
        {
            Token cus_token = AcquireTokenForCustomer(CustomerId);

            return GetEntitlementsAsync(CustomerId, cus_token);
        }

Same methods

CRESTService::GetEntitlementsAsync ( string CustomerId, Token cus_token ) : Task>