コード例 #1
0
 public void Assign(object instance, object value)
 {
     if (_specification.IsSatisfiedBy(value))
     {
         _property.Assign(instance, value);
     }
 }
コード例 #2
0
 ITypeConfiguration IInternalTypeConfiguration.Name(string name)
 {
     _name.Assign(name);
     return(this);
 }
コード例 #3
0
 IMemberConfiguration IInternalMemberConfiguration.Order(int order)
 {
     _order.Assign(order);
     return(this);
 }
コード例 #4
0
ファイル: AttachedMember.cs プロジェクト: wtf3505/home
 public void Assign(object key, object value) => _property.Assign(key, value);