IOfferAddOns.Get 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
Get() |
Retrieves all the add-ons for the provided offer. |
Get(Int32, Int32) |
Retrieves a subset of add-ons for the provided offer. |
Get()
Retrieves all the add-ons for the provided offer.
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
The offer add-ons.
Implements
Applies to
Get(Int32, Int32)
Retrieves a subset of add-ons for the provided offer.
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 offer add-ons to return.
Returns
The requested segment of the offer add-ons.