https://docs.microsoft.com/en-us/dotnet/api/system.web.ihttphandler?view=netframework-4.8

Defines the contract that ASP.NET implements to synchronously process HTTP Web requests using custom HTTP handlers.

Remarks

You can write custom HTTP handlers to process specific, predefined types of HTTP requests in any Common Language Specification (CLS) compliant language.

Executable code defined in the HttpHandler classes, rather than conventional ASP or ASP.NET Web pages, responds to these specific requests.

HTTP handlers give you a means of interacting with the low-level request and response services of the IIS Web server and provide functionality much like ISAPI extensions but with a simpler programming model.

If your handler will access session state values, it must implement the IRequiresSessionState interface (a marker interface with no methods).

最新文章

  1. iptables的扩展匹配
  2. Git 的安装和创建版本库 。
  3. Css3案例
  4. 安全运维之:Linux系统账户和登录安全(转)
  5. Week15(12月16日):授课综述1
  6. auto_ptr and scoped_ptr
  7. 获取spring bean的utils
  8. Java关于使用“final”修饰基本类型的注意事项
  9. hdu1800 贪心+hash+真的有毒
  10. Swift基础之UITextField
  11. sqlite 数据类型 <转>
  12. ffmpeg 转码命令与ffplay
  13. 「SDOI2014」向量集 解题报告
  14. js 正则学习小记之匹配字符串字面量优化篇
  15. java 或者 js 获取项目访问路径(域名)
  16. python---Scrapy模块的使用(二)
  17. iOS-如何写好一个UITableView
  18. 仿微信-ActionSheet
  19. Hadoop端口
  20. 如何用vs查看框架函数管道模型

热门文章

  1. js中ajax请求返回的数据处理成数组后,局部变量赋值给全局变量后,为空
  2. CGI 环境变量
  3. Mac014--Sourcetree安装(Git client)
  4. python字典使用总结
  5. Snacks HDU 5692 dfs序列+线段树
  6. vmware 中标麒麟系统安装VM tools
  7. 埃及分数问题(带乐观估计函数的迭代加深搜索算法-IDA*)
  8. ZeroAccess分析
  9. SSM商城系统开发笔记-问题01-通配符的匹配很全面, 但无法找到元素 'mvc:annotation-driven' 的声明。
  10. WebAuthorize(中间件对所有请求进行拦截)core只有通过添加中间件过滤请求方式 而非继承然后写特性的那种方式