次のリクエストがあります。
var response = $.ajax({
type: "POST",
contentType: "application/x-www-form-urlencoded",
url: this.AgentServiceUrl + "/" + methodName,
data: data,
async: this.Async,
success: function (xml, textStatus) { if (successHandler != null) successHandler(state, $.xml2json(xml), textStatus); },
error: function (xmlHttpRequest, textStatus, errorThrown) { if (errorHandler != null) errorHandler(state, xmlHttpRequest, textStatus, errorThrown); }
});
このリクエスト ヘッダーに変数を追加して、C# で使用したいのですが、
私は多くの方法を試しましたが、C# では使用できません:
beforeSend: function (req) { req.setRequestHeader("AgentGUID", this.AgentGUID); },
合格
parameters:
手伝って頂けますか?C# の部分で関数を変更したくありません。次のようなものを使用したいだけです。
(System.Web.HttpContext.Current.Request.Headers["someHeader"]