Beispiel #1
0
 public override void FindActionsByOwnerType <T>(List <IActionMethodPointer> results, List <UInt32> usedBranches, List <UInt32> usedMethods)
 {
     if (usedBranches.Contains(this.BranchId))
     {
         return;
     }
     usedBranches.Add(this.BranchId);
     if (_list != null)
     {
         _list.FindActionsByOwnerType <T>(results, usedMethods);
     }
 }