You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given the following Json:
{
ID: 1,
OldProp: "value"
}
and the following class:
public class Foo {
public int ID { get; set; }
public string NewProp { get; set; }
}
Give the user a way of handling the fact that "OldProp" does not exist on
the object. The default will be to throw an exception. The user can
register a custom delegate to handle missing properties. Typical actions
could be to ignore the missing property or assign it to a different
property in the case of a rename refactoring.
Original issue reported on code.google.com by [email protected] on 3 Jul 2009 at 12:47
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 3 Jul 2009 at 12:47The text was updated successfully, but these errors were encountered: