Table of Contents

Class Ecommerce.ProductCatalog.OnBeforeContentArgs

Namespace
Dynamicweb.Ecommerce.Notifications
Assembly
Dynamicweb.Ecommerce.dll

Provides information about the module before rendering.

public class Ecommerce.ProductCatalog.OnBeforeContentArgs : NotificationArgs
Inheritance
Ecommerce.ProductCatalog.OnBeforeContentArgs
Inherited Members

Properties

ContentModule

Gets or sets the content module.

public ProductCatalogFrontend ContentModule { get; set; }

Property Value

ProductCatalogFrontend

Output

Gets or sets the output.

public string Output { get; set; }

Property Value

string

Settings

Gets or sets the module settings.

public ProductCatalogSettings Settings { get; set; }

Property Value

ProductCatalogSettings

StopExecution

Gets or sets the value indicating whether to stop execution.

public bool StopExecution { get; set; }

Property Value

bool

Remarks

If set to True the execution will be stopped and Output value will be returned as module output.

To top