コード例 #1
0
 /// <summary>
 /// Visits the children of a <see cref="DeviceOrphan"/>.
 /// </summary>
 /// <param name="orphan">The orphan to visit.</param>
 protected internal override void VisitDevice(DeviceOrphan orphan) => DefaultVisit(orphan);
コード例 #2
0
 /// <summary>
 /// Visits a single <see cref="DeviceOrphan"/>.
 /// </summary>
 /// <param name="orphan">The orphan to visit.</param>
 protected internal abstract void VisitDevice(DeviceOrphan orphan);
コード例 #3
0
 /// <summary>
 /// Visits a single <see cref="DeviceOrphan"/> 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 VisitDevice(DeviceOrphan orphan);
コード例 #4
0
 /// <summary>
 /// Visits the children of a <see cref="DeviceOrphan"/> 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 VisitDevice(DeviceOrphan orphan)
 {
     return(orphan.WithChildren(VisitList(orphan.Children)));
 }