Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以从Android使用基于 Task 的异步 WCF Web 服务方法?任何示例代码将不胜感激。当我用谷歌搜索时,我找不到任何 Android 示例。
编辑:
我特别希望 Android 使用如下所示的 WCF 服务。
[ServiceContract] public interface IMessage { [OperationContract] Task<string> GetMessages(string msg); }