如何编写具有单个端点但具有多个服务合同的 WCF Web 服务?
例子:
[ServiceContract]
public interface IWirelessService
{
[OperationContract]
void AddWireless();
}
[ServiceContract]
public interface IWiredService
{
[OperationContract]
void AddWired();
}
[ServiceContract]
public interface IInternetService
{
[OperationContract]
void AddInternet();
}
让我们认为 IInternetService 是我的主要网络服务,我想在其中实现 IwiredService 和 IWirelessService,但我想在他们的类中实现。这可能吗?我怎么解决这个问题?