asp.net - Web Services (SOAP) - How to work with xmlnodes contained in an interface -
i've added in service reference project has generated several methods contained in interface. here example:
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);
how work these xmlnodes consume them , return information in web application? in example, how agents method?
Comments
Post a Comment