ICustomerOfferCollection.Get Method

Definition

Overloads

Get()

Retrieves all the offers for the provided Customer.

Get(Int32, Int32)

Retrieves a subset of offers for the provided customer.

Get()

Retrieves all the offers for the provided Customer.

public Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Offers.Offer> Get ();
abstract member Get : unit -> Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Offers.Offer>
Public Function Get () As ResourceCollection(Of Offer)

Returns

ResourceCollection<Offer>

The offers for the provided customer.

Implements

Applies to

Get(Int32, Int32)

Retrieves a subset of offers for the provided customer.

public Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Offers.Offer> Get (int offset, int size);
abstract member Get : int * int -> Microsoft.Store.PartnerCenter.Models.ResourceCollection<Microsoft.Store.PartnerCenter.Models.Offers.Offer>
Public Function Get (offset As Integer, size As Integer) As ResourceCollection(Of Offer)

Parameters

offset
Int32

The starting index.

size
Int32

The maximum number of offers to return.

Returns

ResourceCollection<Offer>

The requested segment of the offers for the provided customer.

Implements

Applies to