SubscriptionSettings.RequiresSession Property

 

Gets or sets the value indicating if a subscription supports the concept of session.

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

Syntax

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

Property Value

Type: System.Nullable<Boolean>

true if a subscription supports the concept of session; otherwise, false.

See Also

SubscriptionSettings Class
Microsoft.WindowsAzure.Messaging Namespace

Return to top