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

Time() public static method

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