IOrderCollection.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 all customer orders. |
GetAsync(Boolean) |
Retrieves all customer orders including pricing details (based on access permissions) when requested.. |
GetAsync()
Asynchronously retrieves all customer orders.
public System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Orders.Order>> GetAsync ();
abstract member GetAsync : unit -> System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Orders.Order>>
Public Function GetAsync () As Task(Of ResourceCollection(Of Order))
Returns
The customer orders.
Implements
Applies to
GetAsync(Boolean)
Retrieves all customer orders including pricing details (based on access permissions) when requested..
public System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Orders.Order>> GetAsync (bool includePrice);
abstract member GetAsync : bool -> System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Orders.Order>>
Public Function GetAsync (includePrice As Boolean) As Task(Of ResourceCollection(Of Order))
Parameters
- includePrice
- Boolean
Whether to include pricing details in the order information.
Returns
The customer orders including pricing details (based on access permissions) when requested.