GraphTraversal.Choose Method

 

Namespace:   Microsoft.Azure.Graphs
Assembly:  Microsoft.Azure.Graphs (in Microsoft.Azure.Graphs.dll)

Overload List

Name Description
System_CAPS_pubmethod Choose(GraphTraversal)

System_CAPS_pubmethod Choose(GraphTraversal, GraphTraversal, GraphTraversal)

System_CAPS_pubmethod Choose(Predicate, GraphTraversal, GraphTraversal)

See Also

GraphTraversal Class
Microsoft.Azure.Graphs Namespace

Return to top

GraphTraversal.Choose Method (GraphTraversal)

Syntax

public GraphTraversal Choose(
    GraphTraversal choiceTraversal
)
public:
GraphTraversal^ Choose(
    GraphTraversal^ choiceTraversal
)
Public Function Choose (
    choiceTraversal As GraphTraversal
) As GraphTraversal

Parameters

Return Value

Type: Microsoft.Azure.Graphs.GraphTraversal

Return to top

GraphTraversal.Choose Method (GraphTraversal, GraphTraversal, GraphTraversal)

Syntax

public GraphTraversal Choose(
    GraphTraversal traversalPredicate,
    GraphTraversal trueChoice,
    GraphTraversal falseChoice = null
)
public:
GraphTraversal^ Choose(
    GraphTraversal^ traversalPredicate,
    GraphTraversal^ trueChoice,
    GraphTraversal^ falseChoice = null
)
Public Function Choose (
    traversalPredicate As GraphTraversal,
    trueChoice As GraphTraversal,
    falseChoice As GraphTraversal
) As GraphTraversal

Parameters

Return Value

Type: Microsoft.Azure.Graphs.GraphTraversal

Return to top

GraphTraversal.Choose Method (Predicate, GraphTraversal, GraphTraversal)

Syntax

public GraphTraversal Choose(
    Predicate choosePredicate,
    GraphTraversal trueChoice,
    GraphTraversal falseChoice = null
)
public:
GraphTraversal^ Choose(
    Predicate^ choosePredicate,
    GraphTraversal^ trueChoice,
    GraphTraversal^ falseChoice = null
)
Public Function Choose (
    choosePredicate As Predicate,
    trueChoice As GraphTraversal,
    falseChoice As GraphTraversal
) As GraphTraversal

Parameters

  • choosePredicate
    Type: Microsoft.Azure.Graphs.Translator.Predicate

Return Value

Type: Microsoft.Azure.Graphs.GraphTraversal

Return to top