예제 #1
0
 public MemberInt64(ReflectorProperty <T, Int64> property)
 {
     this.property = property;
 }
예제 #2
0
 public MemberInt64(ReflectorProperty <T, Int64?> property)
 {
     this.property = property.Cast(x => x.Value, x => x);
 }
예제 #3
0
 public MemberString(ReflectorProperty <T, String> property)
 {
     this.property = property;
 }
예제 #4
0
 public MemberDateTime(ReflectorProperty <T, DateTime> property)
 {
     this.property = property;
 }
예제 #5
0
 public MemberDateTime(ReflectorProperty <T, DateTime?> property)
 {
     this.property = property.Cast(x => x.Value, x => x);
 }
예제 #6
0
 public MemberArray(ReflectorProperty <T, V[]> property, Serializer <V> nested)
 {
     this.property = property;
     this.nested   = nested;
 }