IOrder.GetAsync Method

Definition

Overloads

GetAsync()

Asynchronously retrieves the order information.

GetAsync(Boolean)

Asynchronously retrieves the order information including pricing details (based on access permissions) when requested..

GetAsync()

Asynchronously retrieves the order information.

public System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.Models.Orders.Order> GetAsync ();
abstract member GetAsync : unit -> System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.Models.Orders.Order>
Public Function GetAsync () As Task(Of Order)

Returns

The order information.

Implements

Applies to

GetAsync(Boolean)

Asynchronously retrieves the order information including pricing details (based on access permissions) when requested..

public System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.Models.Orders.Order> GetAsync (bool includePrice);
abstract member GetAsync : bool -> System.Threading.Tasks.Task<Microsoft.Store.PartnerCenter.Models.Orders.Order>
Public Function GetAsync (includePrice As Boolean) As Task(Of Order)

Parameters

includePrice
Boolean

Whether to include pricing details in the order information.

Returns

The order information including pricing details (based on access permissions) when requested.

Applies to