Show / Hide Table of Contents

    Class Instruction

    Represents a Bytecode instruction by an operator name and its arguments.

    Inheritance
    System.Object
    Instruction
    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 Instruction

    Constructors

    Instruction(String, Object[])

    Initializes a new instance of the Instruction class.

    Declaration
    public Instruction(string operatorName, params dynamic[] arguments)
    Parameters
    Type Name Description
    System.String operatorName

    The name of the operator.

    System.Object[] arguments

    The arguments.

    Properties

    Arguments

    Gets the arguments.

    Declaration
    public dynamic[] Arguments { get; }
    Property Value
    Type Description
    System.Object[]

    OperatorName

    Gets the name of the operator.

    Declaration
    public string OperatorName { get; }
    Property Value
    Type Description
    System.String
    Back to top Copyright © 2018 The Apache Software Foundation