Esempio n. 1
0
 internal PtxopAffix(PropertyInfo decl, AffixAttribute meta, String name, bool isMandatory, ReadOnlyCollection<Object> options)
 {
     Decl = decl;
     Meta = meta;
     Name = name;
     IsMandatory = isMandatory;
     Options = options ?? new ReadOnlyCollection<Object>(new List<Object>());
 }
Esempio n. 2
0
 internal PtxopAffix(PropertyInfo decl, AffixAttribute meta, String name, bool isMandatory)
     : this(decl, meta, name, isMandatory, null)
 {
 }