Search Results for

    Show / Hide Table of Contents

    Class Binding

    Associates a variable with a value.

    Inheritance
    object
    Binding
    Implements
    IEquatable<Binding>
    Inherited Members
    object.Equals(object, object)
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Gremlin.Net.Process.Traversal
    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
    Type Name Description
    string key

    The key that identifies the Binding.

    object value

    The value of the Binding.

    Properties

    Key

    Gets the key that identifies the Binding.

    Declaration
    public string Key { get; }
    Property Value
    Type Description
    string

    Value

    Gets the value of the Binding.

    Declaration
    public object? Value { get; }
    Property Value
    Type Description
    object

    Methods

    Equals(Binding?)

    Declaration
    public bool Equals(Binding? other)
    Parameters
    Type Name Description
    Binding other
    Returns
    Type Description
    bool

    Equals(object?)

    Declaration
    public override bool Equals(object? other)
    Parameters
    Type Name Description
    object other
    Returns
    Type Description
    bool
    Overrides
    object.Equals(object)

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int
    Overrides
    object.GetHashCode()

    Implements

    IEquatable<T>
    In this article
    Back to top Copyright © 2018 The Apache Software Foundation