WCF SDK Question:
Download Questions PDF

How to deal with operation overloading while exposing the WCF services?

Answer:

By default overload operations (methods) are not supported in WSDL based operation. However by using Name property of OperationContract attribute, we can deal with operation overloading scenario.
[ServiceContract]
interface ICalculator
{
[OperationContract(Name = "AddInt")]
int Add(int arg1,int arg2);
[OperationContract(Name = "AddDouble")]
double Add(double arg1,double arg2);
}
Notice that both method name in the above interface is same (Add), however the Name property of the OperationContract is different. In this case client proxy will have two methods with different name AddInt and AddDouble.

Download WCF SDK Interview Questions And Answers PDF

Previous QuestionNext Question
How to set the timeout property for the WCF Service client call?Tell me how to avoid ANR status?