4

我试图使用 C# 修改 HTTP 标头。我试图操纵 Page preinit 事件上的 Request.Headers。但是当我尝试为标头设置任何内容时,我得到 PlatformNotSupportedException。由于我们无法为 Reqeust.Headers 设置新的 NameValueCollection,因此我尝试使用以下代码设置该值:

Request.Headers.Set(HttpRequestHeader.UserAgent.ToString(), "some value");

知道如何实现吗?

4

2 回答 2

11

尝试这个:

HttpContext.Current.Request.Headers["User-Agent"] = "Some Value";

编辑: 这可能是你的原因: http ://bigjimindc.blogspot.com/2007/07/ms-kb928365-aspnet-requestheadersadd.html

其中有一个代码片段,它为 Request.Headers 添加了一个新标头。也在 Windows 7 32 位操作系统上验证。

但是您可能想要替换该行:

HttpApplication objApp = (HttpApplication)r_objSender;

和:

HttpApplication objApp = (HttpApplication)HttpContext.Current.ApplicationInstance;

编辑: 要替换现有的 Header 值,请使用:

t.InvokeMember("BaseSet", BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance, null, headers, new object[] { "Host", item });

其中“主机”是标题名称。

于 2010-10-20T06:30:45.780 回答
3

从链接的博客添加完整(工作)代码 - 以防该博客消失

HttpApplication objApp = (HttpApplication)HttpContext.Current.ApplicationInstance;
HttpRequest Request = (HttpContext)objApp.Context.Request;

//get a reference
NameValueCollection headers = Request.Headers;

//get a type
Type t = headers.GetType();
System.Collections.ArrayList item = new System.Collections.ArrayList();

t.InvokeMember("MakeReadWrite",BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance,null,headers,null);
t.InvokeMember("InvalidateCachedArrays",BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance,null,headers,null);
item.Add("CUSTOM_HEADER_VALUE");
t.InvokeMember("BaseAdd",BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance,null,headers, new object[]{"CUSTOM_HEADER_NAME",item});
t.InvokeMember("MakeReadOnly",BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance,null,headers,null);
于 2012-11-09T11:25:52.393 回答