Gets or sets the "priority" property.
A null is returned if the property is not set.
Namespace:
Kaazing.AMQPAssembly: Kaazing.AMQP (in Kaazing.AMQP.dll)
Syntax
Visual Basic |
---|
Public Property Priority As Nullable(Of Integer) Get Set |
C# |
---|
public Nullable<int> Priority { get; set; } |
Visual C++ |
---|
public: property Nullable<int> Priority { Nullable<int> get (); void set (Nullable<int> value); } |
Field Value
The value of the property "priority". 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
Exception | Condition |
---|---|
System..::..ArgumentException | Thrown when value is invalid value i.e. value is not between 0 and 9. |