Skip to content

SO support for ignore class fields due a custom attribute #16

@GoogleCodeExporter

Description

@GoogleCodeExporter
I like to see SO to support field ignore due a delphi custom attribute like:

SOIgnore = class(TSuperAttribute);

where:


  TMyObjet = class
  public
    fieldA: Integer;
    [SOIgnore()]
    fieldB: Integer;
  end;

  obj = TMyObj.Create()
  obj.ToJson()

returning

  {
    fieldA: 1
  }


instead of

  {
    fieldA: 1,
    fieldB: 2
  }

Original issue reported on code.google.com by dougcu...@gmail.com on 6 Jun 2011 at 8:49

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions