gpt4 book ai didi

带有 ninject 示例的 WCF

转载 作者:行者123 更新时间:2023-12-04 13:45:42 25 4
gpt4 key购买 nike

首先,我从未见过将 ninject 与 wcf 一起使用的示例。

这是我的 .svc:

<%@ ServiceHost Language="C#" Debug="true" Service="MyService.Services.NotifyService" %>

我的服务:
[ServiceContract]
public interface INotifyService
{
[OperationContract]
void SendEmail(string to, string from, string message);
}

class NotifyService : INotifyService
{
private IEmailRepository emailRepo;

public NotifyService(IEmailRepository emailRepo)
{
if (emailRepo== null) throw new ArgumentNullException("emailRepo");
this.emailRepo= emailRepo;
}
public void SendEmail(string to, string from, string message)
{
//do stuff here
}
}

使用这些信息,我如何依赖注入(inject) MyEmailRepositoryNotifyService ?

如果我没有默认构造函数,wcf 会抛出一个错误,要求提供一个。如果有帮助,我也有使用 ninject 和 asp.net mvc3 的经验。

最佳答案

关于带有 ninject 示例的 WCF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6669976/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com