I have a .NET Webservice which hosts a Method called AddMyObject.
[WebMethod]
public void AddMyObject(MyObject[] objects){...}
Where MyObject is declared as
public class MyObject
{
public string Pro1{get;set;}
public string Pro2{get;set;}
}
If I now add a Property to MyObject, the Client creates a new Proxy from the new WSDL and uses this Property, will an old instance of the Webservice be able to handle it? Of course the new Property will be null
, but will there be any Exception?