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

String() public static method

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