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

DateTime() public static method

Gets a ConstantNode which represents a DateTime value.
public static DateTime ( string literalText, System.DateTime value ) : ConstantNode
literalText string The literal text.
value System.DateTime The value.
return ConstantNode
        public static ConstantNode DateTime(string literalText, DateTime value)
        {
            return new ConstantNode(EdmType.DateTime, literalText, value);
        }