Consider the following ServiceContract
-Interface:
[ServiceContract]
public interface ITest
{
[OperationContract]
void MyMethod(int a, int b);
}
Now we change it to the following (effectively changing parameter int a
to a int? a
):
[ServiceContract]
public interface ITest
{
[OperationContract]
void MyMethod(int? a, int b);
}
Would a client consuming this WCF-Service need to make additional changes to work with the new service definition?