Net.Http.WebApi.OData.Query.Expressions.ConstantNode.Int64 C# (CSharp) Method

Int64() public static method

Gets a ConstantNode which represents a 64 bit signed integer value.
public static Int64 ( string literalText, long value ) : ConstantNode
literalText string The literal text.
value long The value.
return ConstantNode
        public static ConstantNode Int64(string literalText, long value)
        {
            return new ConstantNode(EdmType.Int64, literalText, value);
        }