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.
有人知道如何在 .asmx 页面上隐藏公共网络方法吗?我不希望我的客户查看可用的网络方法。
您可以通过将以下内容添加到您的web.config:
web.config
<webServices> <protocols> <remove name="Documentation" /> </protocols> </webServices>
更多信息