Default types of WCF bindings in .NET
January 27, 2010 by: SanketDefault types of WCF bindings in .NET
Within the Windows Communication Foundation programming model, bindings are represented by the System.ServiceModel.Channels.Binding class. All binding classes must derive from this base class.
Following are the different bindings provided by WCF by default:
1. BasicHttpBinding
2. WSHttpBinding
3. WSDualHttpBinding
4. WSFederationHttpBinding
5. NetTcpBinding
6. NetPeerTcpBinding
7. NetNamedPipesBinding
8. NetMsmqBinding
9. MsmqIntegrationBinding
10. CustomBinding

