Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ReliableSessionBindingElement::FlowControlEnabled Property

 

Gets or sets a value that indicates whether the reliable session has flow control enabled.

Namespace:   System.ServiceModel.Channels
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
property bool FlowControlEnabled {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true if the reliable session has flow control enabled; otherwise, false. The default is true.

Flow control is a mechanism that reliable sessions implement to ensure that senders do not send more messages than a receiver can handle. Receivers have a buffer of messages that is used to accommodate message bursts and out-of-order messages. Receivers advertise to senders the amount of space that remains in this buffer in each of their acknowledgements. Senders can use this information to stop sending new messages whenever the receiver has no buffer space left.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft