Class Bindings
Bindings are used to associate a variable with a value.
Inheritance
System.Object
Bindings
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Gremlin.Net.Process.Traversal
Assembly: cs.temp.dll.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)
Parameters
Type | Name | Description |
---|---|---|
System.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 |