Table of Contents

Class RelatedProductListProviderEventArgs

Namespace
Dynamicweb.Ecommerce.Extensibility.Provider
Assembly
Dynamicweb.Ecommerce.dll

The class RelatedProductListProviderEventArgs holds information about : The current product, Products in the list, The actual group, Collection of groups

public class RelatedProductListProviderEventArgs
Inheritance
RelatedProductListProviderEventArgs
Inherited Members

Properties

Group

Gets or sets the actual group which is rendered

public Group? Group { get; set; }

Property Value

Group

The group.

Groups

Gets or sets the groupcollection used in the rendered list

public GroupCollection Groups { get; set; }

Property Value

GroupCollection

The groups.

Product

Gets or sets the current product.

public Product? Product { get; set; }

Property Value

Product

The product.

Products

Gets or sets the productcollection used in the rendered list

public ProductCollection Products { get; set; }

Property Value

ProductCollection

The products.

To top