Table of Contents

Class Ecommerce.Shops.BeforeSaveArgs

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

Provides information about shop before shop is going to be saved.

public class Ecommerce.Shops.BeforeSaveArgs : NotificationArgs
Inheritance
Ecommerce.Shops.BeforeSaveArgs
Inherited Members

Remarks

The passed NotificationArgs is Ecommerce.Shops.BeforeSaveArgs

Constructors

BeforeSaveArgs(Shop)

Initializes a new instance of the Ecommerce.Shops.BeforeSaveArgs class.

public BeforeSaveArgs(Shop shop)

Parameters

shop Shop

The shop.

Properties

Shop

Gets the shop.

public Shop Shop { get; }

Property Value

Shop

The shop.

ShopBeforeChanges

Gets previous state of the shop.

public Shop ShopBeforeChanges { get; set; }

Property Value

Shop

The shop.

StopExecution

Gets or sets a value indicating whether to stop the save process. If true then the save process is interrupted.

public bool StopExecution { get; set; }

Property Value

bool

true if save process should be interrupted; otherwise, false.

See Also

To top