Multiple choice technology programming languages

Which binding does not support the message streaming?

  1. basicHttpBinding

  2. netTcpBinding

  3. netNamedPipeBinding

  4. wsDualHttpBinding

Reveal answer Fill a bubble to check yourself
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.