Exemplo n.º 1
0
 internal void AddNestedCoordinator(CoordinatorScratchpad nested)
 {
     nested._parent = this;
     this._nestedCoordinatorScratchpads.Add(nested);
 }
 /// <summary>
 ///     Registers a coordinator for a nested collection contained in elements of this collection.
 /// </summary>
 internal void AddNestedCoordinator(CoordinatorScratchpad nested)
 {
     Debug.Assert(nested.Depth == Depth + 1, "can only nest depth + 1");
     nested._parent = this;
     _nestedCoordinatorScratchpads.Add(nested);
 }
 // <summary>
 // Registers a coordinator for a nested collection contained in elements of this collection.
 // </summary>
 internal void AddNestedCoordinator(CoordinatorScratchpad nested)
 {
     Debug.Assert(nested.Depth == Depth + 1, "can only nest depth + 1");
     nested._parent = this;
     _nestedCoordinatorScratchpads.Add(nested);
 }