Enum PollingDuplexMode
Specifies the format of server responses to client polling when the communication is configured for duplex polling.
Namespace: System.ServiceModel.Channels
Assembly: OpenSilver.dll
Syntax
public enum PollingDuplexMode
Fields
Name | Description |
---|---|
MultipleMessagesPerPoll | Specifies the server keeps the connection open for as long there are messages ready to be sent back to the client and sends as many messages back to the client as it can over a chunked HTTP response. |
SingleMessagePerPoll | Specifies the server will return one message every time the client polls for a message and then close the polling connection. This is the default value. |