Which binding does not support the message streaming?
-
basicHttpBinding
-
netTcpBinding
-
netNamedPipeBinding
-
wsDualHttpBinding
D
Correct answer
Explanation
wsDualHttpBinding does not support streaming because it uses HTTP for both request and response channels, and HTTP is inherently message-based (no streaming). TCP and named pipe protocols (netTcpBinding, netNamedPipeBinding) support streaming. basicHttpBinding can support streaming with appropriate transferMode settings.