StoreProductParameters Constructors

Definition

Overloads

Name Description
StoreProductParameters()

Creates a new StoreProductParameters with default (empty) values.

StoreProductParameters(NSDictionary)

Creates a new StoreProductParameters from the values that are specified in dictionary.

StoreProductParameters(Int32)
Obsolete.

Creates a new StoreProductParameters for the specified iTunes identifier.

StoreProductParameters(Int64)

Creates a new StoreProductParameters for the specified 64-bit iTunes identifier.

StoreProductParameters()

Creates a new StoreProductParameters with default (empty) values.

[Foundation.Preserve(Conditional=true)]
public StoreProductParameters();
public StoreProductParameters();
Attributes

Applies to

StoreProductParameters(NSDictionary)

Creates a new StoreProductParameters from the values that are specified in dictionary.

[Foundation.Preserve(Conditional=true)]
public StoreProductParameters(Foundation.NSDictionary? dictionary);
public StoreProductParameters(Foundation.NSDictionary? dictionary);
[<Foundation.Preserve(Conditional=true)>]
new StoreKit.StoreProductParameters : Foundation.NSDictionary -> StoreKit.StoreProductParameters
new StoreKit.StoreProductParameters : Foundation.NSDictionary -> StoreKit.StoreProductParameters

Parameters

dictionary
NSDictionary

The dictionary to use to populate the properties of this type.

Attributes

Applies to

StoreProductParameters(Int32)

Caution

Use 'StoreProductParameters (long)' instead.

Creates a new StoreProductParameters for the specified iTunes identifier.

public StoreProductParameters(int iTunesItemIdentifier);
[System.Obsolete("Use 'StoreProductParameters (long)' instead.")]
public StoreProductParameters(int iTunesItemIdentifier);
new StoreKit.StoreProductParameters : int -> StoreKit.StoreProductParameters
[<System.Obsolete("Use 'StoreProductParameters (long)' instead.")>]
new StoreKit.StoreProductParameters : int -> StoreKit.StoreProductParameters

Parameters

iTunesItemIdentifier
Int32

The 32-bit App Store item identifier to display.

Attributes

Remarks

Use StoreProductParameters(Int64) to support identifiers larger than MaxValue.

Applies to

StoreProductParameters(Int64)

Creates a new StoreProductParameters for the specified 64-bit iTunes identifier.

public StoreProductParameters(long iTunesItemIdentifier);
new StoreKit.StoreProductParameters : int64 -> StoreKit.StoreProductParameters

Parameters

iTunesItemIdentifier
Int64

The App Store item identifier to display.

Applies to