Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DataDescriptorCollection{T}" /> class.
 /// </summary>
 internal DataDescriptorCollection(IDataDescriptorsHost host)
 {
     this.host = host;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SortDescriptorCollection" /> class.
 /// </summary>
 /// <param name="owner">The owner.</param>
 internal SortDescriptorCollection(IDataDescriptorsHost owner)
     : base(owner)
 {
 }
Exemple #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AggregateDescriptorCollection" /> class.
 /// </summary>
 /// <param name="owner">The owner.</param>
 internal AggregateDescriptorCollection(IDataDescriptorsHost owner) : base(owner)
 {
 }
Exemple #4
0
 internal void Attach(IDataDescriptorsHost model)
 {
     this.Host = model;
     this.UpdateAssociatedPeer();
     this.AttachOverride();
 }
Exemple #5
0
 internal void AttachToHost(IDataDescriptorsHost host)
 {
     throw new NotImplementedException();
 }