Class Binding
Associates a variable with a value.
Assembly: Gremlin.Net.dll
Syntax
public class Binding : IEquatable<Binding>
Constructors
Binding(string, object)
Initializes a new instance of the Binding class.
Declaration
public Binding(string key, object value)
Parameters
Properties
Key
Gets the key that identifies the Binding.
Declaration
public string Key { get; }
Property Value
Value
Declaration
public object Value { get; }
Property Value
Methods
Equals(Binding)
Declaration
public bool Equals(Binding other)
Parameters
Type |
Name |
Description |
Binding |
other |
|
Returns
Equals(object)
Declaration
public override bool Equals(object other)
Parameters
Type |
Name |
Description |
object |
other |
|
Returns
Overrides
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
Implements