ReliableSessionBindingElement Constructors

Definition

Initializes a new instance of the ReliableSessionBindingElement class.

Overloads

ReliableSessionBindingElement()

Initializes a new instance of the ReliableSessionBindingElement class.

ReliableSessionBindingElement(Boolean)

Initializes a new instance of the ReliableSessionBindingElement class that specifies whether message delivery must preserve the order in which messages are sent.

ReliableSessionBindingElement()

Source:
ReliableSessionBindingElement.cs
Source:
ReliableSessionBindingElement.cs
Source:
ReliableSessionBindingElement.cs

Initializes a new instance of the ReliableSessionBindingElement class.

public:
 ReliableSessionBindingElement();
public ReliableSessionBindingElement ();
Public Sub New ()

Applies to

ReliableSessionBindingElement(Boolean)

Source:
ReliableSessionBindingElement.cs
Source:
ReliableSessionBindingElement.cs
Source:
ReliableSessionBindingElement.cs

Initializes a new instance of the ReliableSessionBindingElement class that specifies whether message delivery must preserve the order in which messages are sent.

public:
 ReliableSessionBindingElement(bool ordered);
public ReliableSessionBindingElement (bool ordered);
new System.ServiceModel.Channels.ReliableSessionBindingElement : bool -> System.ServiceModel.Channels.ReliableSessionBindingElement
Public Sub New (ordered As Boolean)

Parameters

ordered
Boolean

true if messages must be delivered in the order in which they are sent; otherwise, false. The default value is true.

Applies to