我有一个带有 WebHttpBinding 的 WCF WebServiceHost。
我不想回复未列入白名单的 IP 以隐藏服务的存在,而不是回答 404 错误。
我试过没有成功:
OperationContext.Current.Channel.Close() / Abort()
Throw New InvalidOperationException()
Kill the thread but no new connection can be established
我的服务行为设置为
InstanceContextMode.PerSession
ConcurrencyMode.Single
任何想法?