是否可以在Windows Store应用程序中使用WCF可靠会话?
我正在使用c#在Visual Studio 2012 Professional中编写Windows Store应用程序。我正在尝试使用会话访问WCF服务。我不能使用WSHttpBinding,因为Windows Store应用程序不支持它。我发现Windows Store应用程序确实支持NetHTTPBinding,它支持可靠的会话,但我似乎无法访问绑定的ReliableSession属性,也无法访问以"bool reliableSessionEnabled"为参数的构造函数。
是否有任何绑定支持Windows Store应用程序的会话?
乔
如文档(版本信息部分)所述,ReliableSession
属性不可用于Windows Store应用程序,即不支持WCF可靠会话。
本文描述了Windows Store应用程序中可用的WCF功能的完整子集。虽然包括NetHttpBinding
,但不包括ReliableSessionBindingElement
。