Table of Contents

Class Binding

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

Associates a variable with a value.

public class Binding : IEquatable<Binding>
Inheritance
Binding
Implements
Inherited Members

Constructors

Binding(string, object?)

Initializes a new instance of the Binding class.

public Binding(string key, object? value)

Parameters

key string

The key that identifies the Binding.

value object

The value of the Binding.

Properties

Key

Gets the key that identifies the Binding.

public string Key { get; }

Property Value

string

Value

Gets the value of the Binding.

public object? Value { get; }

Property Value

object

Methods

Equals(Binding?)

public bool Equals(Binding? other)

Parameters

other Binding

Returns

bool

Equals(object?)

public override bool Equals(object? other)

Parameters

other object

Returns

bool

GetHashCode()

public override int GetHashCode()

Returns

int