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

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

Parameters

optionCategoryId
Type: System.Int32
Option category ID.
skuId
Type: System.Int32
Product ID.
cancellationToken (Optional)
Type: System.Nullable<CancellationToken>
The cancellation instruction.

Return Value

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

Implements

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