IInvoiceLineItemCollection.GetAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetAsync() |
Asynchronously retrieves invoice line items for a specific billing provider and invoice line item type |
GetAsync(Int32, Int32) |
Asynchronously retrieves a subset of invoice line items for a specific billing provider and invoice line item type |
GetAsync()
Asynchronously retrieves invoice line items for a specific billing provider and invoice line item type
public System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Invoices.InvoiceLineItem>> GetAsync ();
abstract member GetAsync : unit -> System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Invoices.InvoiceLineItem>>
Public Function GetAsync () As Task(Of ResourceCollection(Of InvoiceLineItem))
Returns
The collection of invoice line items.
Implements
Applies to
GetAsync(Int32, Int32)
Asynchronously retrieves a subset of invoice line items for a specific billing provider and invoice line item type
public System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Invoices.InvoiceLineItem>> GetAsync (int size, int offset);
abstract member GetAsync : int * int -> System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Invoices.InvoiceLineItem>>
Public Function GetAsync (size As Integer, offset As Integer) As Task(Of ResourceCollection(Of InvoiceLineItem))
Parameters
- size
- Int32
The maximum number of invoice line items to return.
- offset
- Int32
The page offset.
Returns
The subset of invoice line items.