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

Popular posts from this blog

google chrome - Developer tools - How to inspect the elements which are added momentarily (by JQuery)? -

angularjs - Showing an empty as first option in select tag -

php - Cloud9 cloud IDE and CakePHP -