c# - How to read http header values in webservices (during Soap invoke())? -
i have following method in proxy class hit service , give response. how can read http header informations on each invoke()? (on both request , response)
public responsers methodrqrs ([system.xml.serialization.xmlelementattribute(namespace="http://www.otpallia.com/2005/06")] requestrq requstrq) { object[] results = this.invoke("action", new object[]{requestrq}); return ((responsers)(results[0])); }
Comments
Post a Comment