public MemberInt64(ReflectorProperty <T, Int64> property) { this.property = property; }
public MemberInt64(ReflectorProperty <T, Int64?> property) { this.property = property.Cast(x => x.Value, x => x); }
public MemberString(ReflectorProperty <T, String> property) { this.property = property; }
public MemberDateTime(ReflectorProperty <T, DateTime> property) { this.property = property; }
public MemberDateTime(ReflectorProperty <T, DateTime?> property) { this.property = property.Cast(x => x.Value, x => x); }
public MemberArray(ReflectorProperty <T, V[]> property, Serializer <V> nested) { this.property = property; this.nested = nested; }