icubilla / jsonexserializer

Automatically exported from code.google.com/p/jsonexserializer
0 stars 0 forks source link

A property with a private/protected get or set are not defaulted to ignore #36

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
A property that is not writable and readable is defaulted to Ignored.  
private or protected setters are incorrectly considered writable.

Reproduce
public class A
  private int _b;
  public int B {
      get { return _b; }
      private set { this._b = value; }
  }
}

The metadata for property "B" should default to "Ignored".

Original issue reported on code.google.com by elliott....@gmail.com on 6 Jan 2009 at 8:07

GoogleCodeExporter commented 9 years ago

Original comment by elliott....@gmail.com on 26 Jan 2009 at 2:02

GoogleCodeExporter commented 9 years ago

Original comment by elliott....@gmail.com on 3 Jul 2009 at 12:43

GoogleCodeExporter commented 9 years ago
Release 3.1

Original comment by elliott....@gmail.com on 16 Apr 2010 at 3:51