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

Single() public static method

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