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.
我需要了解这两种实现何时使用。使用一个而不是另一个的动机是什么,这些可以互换使用吗?
提前致谢
AnIHttpHandler是“自己动手”的解决方案。您将自己处理所有事情,并且您将负责诸如互操作性之类的事情。
IHttpHandler
使用 Web 服务(WCF Web 服务),您将获得序列化/反序列化、基础结构以及客户端轻松使用您的服务的能力。
对于“服务”类型的操作,请使用 Web 服务。如果您的任务不适合,请考虑IHttpHandler.