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.

Order

The Order being handled.

public Order Order { get; set; }

Property Value

Order

The order.

Price

The information about calculated price.

public PriceCalculated Price { get; set; }

Property Value

PriceCalculated

The shipping price.

Shipping

The Shipping being executed.

public Shipping Shipping { get; set; }

Property Value

Shipping

The shipping.

See Also

To top