Net.Http.WebApi.OData.Query.Expressions.ConstantNode.Time C# (CSharp) 메소드

Time() 공개 정적인 메소드

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.
리턴 ConstantNode
        public static ConstantNode Time(string literalText, TimeSpan value)
        {
            return new ConstantNode(EdmType.Time, literalText, value);
        }
    }