Exemple #1
0
 public MemberFieldProfile(FieldInfo fieldInfo)
 {
     MemberInfo = fieldInfo;
     Value      = new ValueConnector(fieldInfo);
     Collection = new CollectionConnector(fieldInfo);
     Dictionary = new DictionaryConnector(fieldInfo);
 }
Exemple #2
0
            public MemberPropertyProfile(PropertyInfo propertyInfo)
            {
                MemberInfo = propertyInfo;
                Value      = new ValueConnector(propertyInfo);
                Collection = new CollectionConnector(propertyInfo);
                Dictionary = new DictionaryConnector(propertyInfo);

                Setup();
            }