Table of Contents

Class Ecommerce.Cart.BeforeShippingCalculationArgs

Namespace
Dynamicweb.Ecommerce.Notifications
Assembly
Dynamicweb.Ecommerce.dll
Provides information about order before shipping calculation is executed.
public class Ecommerce.Cart.BeforeShippingCalculationArgs : NotificationArgs
Inheritance
Ecommerce.Cart.BeforeShippingCalculationArgs
Inherited Members

Remarks

The passed NotificationArgs is Ecommerce.Cart.BeforeShippingCalculationArgs

Properties

Cancel

Property indicating whether to cancel the execution of the shipping calculation. Default value is false.
public bool Cancel { get; set; }

Property Value

bool
true if [cancel]; otherwise, false.
See Also

Order

The Order being handled.
public Order Order { get; set; }

Property Value

Order
The order.
See Also

Shipping

The Shipping being executed.
public Shipping Shipping { get; set; }

Property Value

Shipping
The shipping.
See Also

See Also

To top