Why method overloading is not allowed in WCF?

前端 未结 3 1542
栀梦
栀梦 2020-11-29 00:42

Assume that this is a ServiceContract

[ServiceContract]
public interface MyService
{
    [OperationContract]
    int Sum(int x, int y);

    [O         


        
3条回答
  •  一个人的身影
    2020-11-29 00:57

    In a nutshell, the reason you cannot overload methods has to do with the fact that WSDL does not support the same overloading concepts present inside of C#. The following post provides details on why this is not possible.

    http://jeffbarnes.net/blog/post/2006/09/21/Overloading-Methods-in-WCF.aspx

    To work around the issue, you can explicitly specify the Name property of the OperationContract.

    [ServiceContract]
    public interface MyService
    {
        [OperationContract(Name="SumUsingInt")]
        int Sum(int x, int y);
    
        [OperationContract(Name="SumUsingDouble")]
        int Sum(double x, double y);
    }
    

提交回复
热议问题