Example #1
0
 public static bool IsPreSubTaskNode(this GraphNode <Key, FormNode> node, out PreSubTaskFormNode value)
 {
     value = null;
     if (!GraphNodePredicates.IsPreSubTaskNode(node))
     {
         return(false);
     }
     value = (PreSubTaskFormNode)node.Value;
     return(true);
 }
Example #2
0
 public static bool IsPreSubTaskNode(this GraphNode <Key, FormNode> node) =>
 GraphNodePredicates.IsPreSubTaskNode(node);