Table of Contents

Class Ecommerce.Cart.AfterShippingCalculationArgs

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

Remarks

The passed NotificationArgs is Ecommerce.Cart.AfterShippingCalculationArgs

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

Price

The information about calculated price.
public PriceCalculated Price { get; set; }

Property Value

PriceCalculated
The shipping price.
See Also

Shipping

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

Property Value

Shipping
The shipping.
See Also

See Also

To top