Пример #1
0
 public UnknownMember(IType declaringType, Microsoft.Expression.DesignModel.Metadata.MemberType memberType, string propertyName) : base(declaringType, propertyName)
 {
     this.memberType = memberType;
     this.sortValue  = PropertySortValue.RegisterProperty(this);
 }
Пример #2
0
 protected Property(IType declaringType, string name, IType propertyType, int sortValue) : base(declaringType, name)
 {
     this.propertyType = propertyType;
     this.sortValue    = (sortValue == PropertySortValue.NoValue ? PropertySortValue.RegisterProperty(this) : sortValue);
 }