ReliableSessionBindingElement Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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()
Initializes a new instance of the ReliableSessionBindingElement class.
public:
ReliableSessionBindingElement();
public ReliableSessionBindingElement ();
Public Sub New ()
Applies to
ReliableSessionBindingElement(Boolean)
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
.