예제 #1
0
 /// <summary>
 /// Visits the children of a <see cref="PrtgOrphanCollection"/>.
 /// </summary>
 /// <param name="orphan">The orphan to visit.</param>
 protected internal override void VisitCollection(PrtgOrphanCollection orphan) => DefaultVisit(orphan);
 public PrtgOrphanCollectionDebugView(PrtgOrphanCollection orphan)
 {
     this.orphan = orphan;
 }
예제 #3
0
 /// <summary>
 /// Visits a single <see cref="PrtgOrphanCollection"/>.
 /// </summary>
 /// <param name="orphan">The orphan to visit.</param>
 protected internal abstract void VisitCollection(PrtgOrphanCollection orphan);
예제 #4
0
 /// <summary>
 /// Visits a single <see cref="PrtgOrphanCollection"/> and produces a value of type <typeparamref name="TResult"/>.
 /// </summary>
 /// <param name="orphan">The orphan to visit.</param>
 /// <returns>The result of visitng the orphan.</returns>
 protected internal abstract TResult VisitCollection(PrtgOrphanCollection orphan);
예제 #5
0
 /// <summary>
 /// Visits the children of a <see cref="PrtgOrphanCollection"/> and replaces the orphan if any of its children are modified.
 /// </summary>
 /// <param name="orphan">The orphan to visit.</param>
 /// <returns>If any children were modified, a new orphan with the modified children. Otherwise, the original orphan.</returns>
 protected internal override PrtgOrphan VisitCollection(PrtgOrphanCollection orphan)
 {
     return(orphan.WithChildren(VisitList(orphan.Children)));
 }