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

ConstantNode() private method

Initialises a new instance of the ConstantNode class.
private ConstantNode ( EdmType edmType, string literalText, object value ) : System
edmType EdmType The of the value.
literalText string The literal text.
value object The value.
return System
        private ConstantNode(EdmType edmType, string literalText, object value)
        {
            this.EdmType = edmType;
            this.LiteralText = literalText;
            this.Value = value;
        }