Click or drag to resize
VariantOptionInfoProvider.GetAsync Method (Int32, Int32, Nullable<CancellationToken>)
Asynchronously gets an instance of the VariantOptionInfo binding structure.

Namespace: CMS.Ecommerce
Assembly: CMS.Ecommerce (in CMS.Ecommerce.dll) Version: 13.0.131
Syntax
C#
public virtual Task<VariantOptionInfo> GetAsync(
	int skuVariantId,
	int skuOptionId,
	Nullable<CancellationToken> cancellationToken = null
)

Parameters

skuVariantId
Type: System.Int32
Product variant ID.
skuOptionId
Type: System.Int32
Product option ID.
cancellationToken (Optional)
Type: System.Nullable<CancellationToken>
The cancellation instruction.

Return Value

Type: Task<VariantOptionInfo>
Returns a task returning either an instance of VariantOptionInfo corresponding to given identifiers or null.

Implements

IVariantOptionInfoProvider.GetAsync(Int32, Int32, Nullable<CancellationToken>)
See Also