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索引器的搜索顺序所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)