Multiple interfaces from a single WCF service?

前端 未结 5 2075
情书的邮戳
情书的邮戳 2020-12-05 02:44

Can a single WCF service offer multiple interfaces, and if so how would you express this in app.config?

I mean one services offering several Interfaces

5条回答
  •  天命终不由人
    2020-12-05 02:53

    If your implementation class getting too big (like mine) try implement the super-interface in a partial class. You can put one interface implementation into one file. It's merely a convention but could be useful later.

提交回复
热议问题