WCF 2具有相同名称的方法

时间:2014-09-16 14:39:32

标签: c# wcf

我对wcf服务有一个简短的问题

我想实现2个具有相同名称的方法。 但是使用不同数量的参数。

实施例

[ServiceContract]
public interface ILiveLeadsService
{                
    [OperationContract]
    string AddLiveLeads(string a, string b);

    [OperationContract]
    string AddLiveLeads(string a, string b, string c);
}

我能做什么,我可以使用这两个同名的方法?

欢呼声 安德烈

0 个答案:

没有答案