Share via


QueueSettings.SupportOrdering Property

 

Gets or sets a value that indicates whether the queue supports ordering.

Namespace:   Microsoft.WindowsAzure.Messaging
Assembly:  Microsoft.WindowsAzure.Messaging.Managed (in Microsoft.WindowsAzure.Messaging.Managed.dll)

Syntax

[DataMemberAttribute(Order = 12)]
public Nullable<bool> SupportOrdering { get; set; }
public:
[DataMemberAttribute(Order = 12)]
property Nullable<bool> SupportOrdering {
    Nullable<bool> get();
    void set(Nullable<bool> value);
}
[<DataMemberAttribute(Order = 12)>]
member SupportOrdering : Nullable<bool> with get, set
<DataMemberAttribute(Order := 12)>
Public Property SupportOrdering As Nullable(Of Boolean)

Property Value

Type: System.Nullable<Boolean>

true if the queue supports ordering; otherwise, false.

See Also

QueueSettings Class
Microsoft.WindowsAzure.Messaging Namespace

Return to top