Reputation: 455
I just downloaded Visual Studio 2012 and I want to connect my wcf service which is written in .net4. I want to define a WsHttpBinding
like
BasicHttpBinding binding = new BasicHttpBinding();
but the problem is the system does not recognize
WsHttpBinding binding = new WsHttpBinding()
or something like that. Does anyone know why not?
Upvotes: 1
Views: 640
Reputation: 45127
Here is a list of WCF Bindings supported by a Metro Style App. Ws-* does not appear to be currently supported.
Upvotes: 1