ShippingDiscountAmount Property
Gets or sets the shipping discount amount.
Namespace: Microsoft.CommerceServer.Runtime.Orders
Assembly: Microsoft.CommerceServer.Runtime (in Microsoft.CommerceServer.Runtime.dll)
'Declaration
Public Property ShippingDiscountAmount As Decimal
'Usage
Dim instance As Shipment
Dim value As Decimal
value = instance.ShippingDiscountAmount
instance.ShippingDiscountAmount = value
public decimal ShippingDiscountAmount { get; set; }
public:
property Decimal ShippingDiscountAmount {
Decimal get ();
void set (Decimal value);
}
public function get ShippingDiscountAmount () : decimal
public function set ShippingDiscountAmount (value : decimal)
Type: System..::.Decimal
The shipping discount amount.
Exception | Condition |
---|---|
ArgumentException | The value is set to a negative value. |
Stores the shipping discount amount.
ShippingDiscountAmount is calculated during execution of the pipeline. If you add line items and access ShippingDiscountAmount without executing a pipeline, ShippingDiscountAmount remains at 0.
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.