Я создал следующий запрос на JavaScript:
this.XmlHttp.setRequestHeader("AgentGUID", AgentGUID);
Как я могу потреблять его с помощью веб-службы C #?
запрос попадает на следующий WebService:
[WebService(Namespace = "http://mysite.com/WebServices/Agent", Description = "Some description")]
public class AgentService : WebService
{
[WebMethod(Description = "SomeDesc.", MessageName = "LoginRSA")]
public LoginResult LoginRSA(string loginId, string password, string tenant)
{
// Here I want to consume request header
}
}