Table of Contents

Class Bindings

Namespace
Gremlin.Net.Process.Traversal
Assembly
Gremlin.Net.dll

Bindings are used to associate a variable with a value.

public class Bindings
Inheritance
Bindings
Inherited Members

Constructors

Bindings()

public Bindings()

Properties

Instance

Gets an instance of the Bindings class.

public static Bindings Instance { get; }

Property Value

Bindings

Methods

Of<TV>(string, TV)

Binds the variable to the specified value.

public TV Of<TV>(string variable, TV value) where TV : notnull

Parameters

variable string

The variable to bind.

value TV

The value to which the variable should be bound.

Returns

TV

The bound value.

Type Parameters

TV