コード例 #1
0
 public ChangedValueDescriptorCollection(ChangedValueDescriptorCollection descriptors) : this()
 {
     if (descriptors == null)
     {
         throw new ArgumentNullException(nameof(descriptors));
     }
     Populate((IEnumerable <ChangedValueDescriptor>)descriptors);
 }
コード例 #2
0
 public ChangeTrackingContext(ChangedValueDescriptorCollection collection)
 {
     _changedValueCollection = collection == null
         ? new ChangedValueDescriptorCollection()
         : new ChangedValueDescriptorCollection(collection);
 }
コード例 #3
0
 public void Populate(ChangedValueDescriptorCollection collection)
 {
     _changedValueCollection.Populate(collection);
 }
コード例 #4
0
 public ChangeTrackingContext()
 {
     _changedValueCollection = new ChangedValueDescriptorCollection();
 }