Class Bindings
Bindings are used to associate a variable with a value.
Inherited Members
Namespace: Gremlin.Net.Process.Traversal
Assembly: Gremlin.Net.dll
Syntax
public class Bindings
Properties
Instance
Gets an instance of the Bindings class.
Declaration
public static Bindings Instance { get; }
Property Value
Type | Description |
---|---|
Bindings |
Methods
Of<TV>(string, TV)
Binds the variable to the specified value.
Declaration
public TV Of<TV>(string variable, TV value) where TV : notnull
Parameters
Type | Name | Description |
---|---|---|
string | variable | The variable to bind. |
TV | value | The value to which the variable should be bound. |
Returns
Type | Description |
---|---|
TV | The bound value. |
Type Parameters
Name | Description |
---|---|
TV |