Gets or sets the "deliveryMode" property. A null is returned if the property is not set.

Namespace:  Kaazing.AMQP
Assembly:  Kaazing.AMQP (in Kaazing.AMQP.dll)

Syntax

Visual Basic
Public Property DeliveryMode As Nullable(Of Integer)
	Get
	Set
C#
public Nullable<int> DeliveryMode { get; set; }
Visual C++
public:
property Nullable<int> DeliveryMode {
	Nullable<int> get ();
	void set (Nullable<int> value);
}

Field Value

The value of the property "deliveryMode". Tha value cannot be null and it should be either 1(for non-persistent) or 2(for persistent). If a null value is passed in, it indicates that the property is not set. null value can be passed to remove the property once it is set.

Exceptions

ExceptionCondition
System..::..ArgumentException Thrown when value is invalid value i.e. value is not either 1(for non-persistent) or 2(for persistent)

See Also