c# – HttpRequest索引器的搜索顺序

c# – HttpRequest索引器的搜索顺序,第1张

概述如果您通过Request [key]对Request的项目进行简单索引,则会查找 4 locations.订单是什么?有人在“Cookies,ServerVariables,Form和QueryString”页面上猜测.有人有确切消息么?文档将是一个奖金:) public string this[string key] { get; } Declaring Type: System.Web.Htt 如果您通过Request [key]对Request的项目进行简单索引,则会查找 4 locations.订单是什么?有人在“cookies,ServerVariables,Form和queryString”页面上猜测.有人有确切消息么?文档将是一个奖金:)解决方法

public string this[string key] { get; }

Declaring Type: System.Web.httpRequest Assembly: System.Web,
Version=2.0.0.0

public string this[string key]{    get    {        string str = this.queryString[key];        if (str != null)        {            return str;        }        str = this.Form[key];        if (str != null)        {            return str;        }        httpcookie cookie = this.cookies[key];        if (cookie != null)        {            return cookie.Value;        }        str = this.ServerVariables[key];        if (str != null)        {            return str;        }        return null;    }}
总结

以上是内存溢出为你收集整理的c# – HttpRequest索引器的搜索顺序全部内容,希望文章能够帮你解决c# – HttpRequest索引器的搜索顺序所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1247454.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存