Enum MessageExchangePattern
Defines common message exchange scenarios.
Namespace: Nevatech.Vsb.Repository.Entities
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public enum MessageExchangePattern
Fields
Name | Description |
---|---|
Receive | Defines pattern when client opens connection to the service and service sends to client one-way message. WCF supports this scenario by using duplex bindings and callback contracts. |
RequestResponse | Defines pattern when client sends request message, service processes request and sends back response message. |
Send | Defines pattern when client sends and service receives one-way message. |
SolicitResponse | Defines pattern when client opens connection to the service, service calls client with request message and client sends response back to the service. WCF supports this scenario by using duplex bindings and callback contracts. |