Beispiel #1
0
 public static TagMapLeaf CreateEnumerable(PropertyInfo property, int repeatingTagNumber, Type innerType, BaseSetter setter)
 {
     return(new TagMapLeaf(property, setter)
     {
         IsEnumerable = true,
         RepeatingTagNumber = repeatingTagNumber,
         InnerType = innerType
     });
 }
Beispiel #2
0
 public TagMapLeaf(PropertyInfo current, BaseSetter setter) : base(current)
 {
     Setter = setter;
 }
Beispiel #3
0
 public static TagMapLeaf CreateRepeatingTag(PropertyInfo property, Type innerType, BaseSetter propertySetter)
 {
     return(new TagMapLeaf(property, propertySetter)
     {
         IsEnumerable = false,
         InnerType = innerType,
     });
 }