NetNamedPipeBinding::TransferMode Property
Gets or sets a value that indicates whether the service configured with the binding uses streamed (in one or both directions) or buffered modes of message transfer.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
public: property TransferMode TransferMode { TransferMode get(); void set(TransferMode value); }
Property Value
Type: System.ServiceModel::TransferModeThe TransferMode value that indicates whether the service configured with the binding uses streamed (in one or both directions) or buffered modes of message transfer. The default is Buffered.
It is possible to stream only the incoming or the outgoing messages by specifying, respectively, StreamedRequest or StreamedResponse.
The following example shows how to get the TransferMode.
TransferMode transferMode = binding.TransferMode;
Available since 3.0