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