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 网络服务,以便所有请求都通过 HTTPS 发出。在 MVC 中,我可以定义以下工作正常;
#if !DEBUG [RequireHttps] #endif
.NET ASMX webservice 的等价物是什么,因为我注意到我的 ASMX 项目在我使用上述代码时构建,但是当我发布它时我得到
错误 CS0246:找不到类型或命名空间名称“RequireHttps”(您是否缺少 using 指令或程序集引用?)
我怎样才能解决这个问题?