Anyone have any idea why the auto-implemented version of the class does not come through on a Post to the Web API?
namespace N_EWA
{
public class testMe
{
public bool Pending { get; set; }
}
}
However.... if I define the class and property as below.... it recognizes the incoming object and it works....
namespace N_EWA
{
public class testMe
{
private bool pending { get; set; }
public bool Pending
{
get { return pending; }
set { pending = value; }
}
}
}