HttpHandler template in Xamarin
本文关键字:Xamarin in template HttpHandler | 更新日期: 2023-09-27 18:13:40
Visual Studio有一个HttpHandler模板。我没有在网上找到那个模板。如何创建简单的ASP。. NET HttpHandler使用Xamarin?
- 添加新解决方案,选择"空ASP"。. NET项目模板。
- 添加新文件到项目选择"Web Handler with CodeBehind"模板。
- 选择"Web Application Configuration"模板添加新文件到项目。
- 在
web.config
文件中将httpHandlers
部分替换为 - 将
context.Response.Write ("It works!");
加入ProcessRequest
法 - 按F5
它应该在http://127.0.0.1:8080/
上打开一个新的浏览器选项卡,上面写着"It works!"