Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 WinForms 应用程序中有一个自定义的 ASP.Net 服务器。服务器是使用CreateApplicationHost和一个简单的HttpWorkerRequest实现创建的。
我发现自定义服务器只处理对 aspx 文件的请求。如果我尝试从浏览器访问 xml / txt / png 文件,它会给出“找不到资源”。错误。
我的问题是:必须做什么才能提供此类文件?
答案是必须重写HttpWorkerRequest.SendResponseFromFile方法才能通过响应流发送文件。