Search Results for

    Show / Hide Table of Contents

    Class Binding

    Associates a variable with a value.

    Inheritance
    System.Object
    Binding
    Implements
    System.IEquatable<Binding>
    Inherited Members
    System.Object.Equals(System.Object, System.Object)
    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 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
    System.String key

    The key that identifies the Binding.

    System.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
    System.String

    Value

    Gets the value of the Binding.

    Declaration
    public object Value { get; }
    Property Value
    Type Description
    System.Object

    Methods

    Equals(Binding)

    Declaration
    public bool Equals(Binding other)
    Parameters
    Type Name Description
    Binding other
    Returns
    Type Description
    System.Boolean

    Equals(Object)

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

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    System.Int32
    Overrides
    System.Object.GetHashCode()

    Implements

    System.IEquatable<T>
    In This Article
    Back to top Copyright © 2018 The Apache Software Foundation