我已经在我的项目的服务引用中添加了一个生成了几个包含在接口中的方法。这是一个例子:
public interface ClientServiceSoap {
[System.ServiceModel.OperationContractAttribute(Action="https://service.service.com/GetAgentsInGroup", ReplyAction="*")]
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
System.Xml.XmlNode GetAgentsInGroup(string username, string password, int groupId);
[System.ServiceModel.OperationContractAttribute(Action="https://service.service.com/GetAgentsInGroup", ReplyAction="*")]
System.Threading.Tasks.Task<System.Xml.XmlNode> GetAgentsInGroupAsync(string username, string password, int groupId);
如何使用这些xmlnodes来使用它们并在Web应用程序中返回信息?在这个例子中,我如何从方法中获取代理?