コード例 #1
0
 public override IEnumerable <TreeNodeViewModel> VisitNodeAndBuildChildren(RowEventCategoryNodeViewModel rowEventCategory, bool expandChildren,
                                                                           CancellationToken cancellation)
 {
     return(CreateEventsCategoryChildren <GraphRowEventInfo>(rowEventCategory,
                                                             (eventCategory, dacName, rowEvents, isExpanded) => new DacGroupingNodeForRowEventViewModel(eventCategory, dacName, rowEvents, isExpanded),
                                                             expandChildren, cancellation));
 }
コード例 #2
0
 public virtual TResult VisitNode(RowEventCategoryNodeViewModel rowEventCategory) => DefaultVisit(rowEventCategory);
コード例 #3
0
 public virtual TResult VisitNode(RowEventCategoryNodeViewModel rowEventCategory, TInput input) => DefaultVisit(rowEventCategory, input);
コード例 #4
0
 public virtual IEnumerable <TreeNodeViewModel> VisitNodeAndBuildChildren(RowEventCategoryNodeViewModel rowEventCategory, bool expandChildren,
                                                                          CancellationToken cancellation) =>
 Enumerable.Empty <TreeNodeViewModel>();