を消費:は、私はジャバスクリプトで次の要求を作成したのXMLHttpRequestヘッダ
this.XmlHttp.setRequestHeader("AgentGUID", AgentGUID);
は、どのように私はそれがC#のWebサービスを投げる消費することができますか? 要求は、次のWebサービスを取得します:
[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
}
}
ローカル変数は、小文字で始まる必要があります。 – svick
@svick、true、edited –
お返事ありがとうございます!私は+1に投票しましたが、彼が最初であったため、BitKFuにチェックマークを付けました。 –