0
Im對SimpleInjector和WCF一般來說還是新手使用SimpleInjector消耗WCF
是否有任何方式使用SimpleInjector來使用WCF? 下面是我的WCF代碼
[ServiceContract]
public interface IPassAuth
{
[OperationContract]
string Authenticate(string uid, string pass);
}
public class PassAuth : IPassAuth
{
// Implementations here...
}
現在的問題是我怎麼能ASP.Net MVC使用SimpleInjector它消耗? 我是否還需要創建一個與其匹配的OperationContracts接口? 我已閱讀文檔on WCF Integration Simple Injector,但我似乎無法理解應有的想法。
任何簡單的代碼將大大清楚和幫助。
這和從RestApi.dll調用一樣嗎? – Reyn
對不起,沒聽說過RestApi.dll。聽起來像是要構建或使用REST服務的東西,但即使使用Google搜索也無法幫助我確定它是什麼特定的解決方案。 –