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

Int32() public static method

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