ExpressionParserParse Method (String, String, String) |
Note: This API is now obsolete.
Parse a field expression into its flag characters and reference string. Flag characters,
if any, must precede the expression itself.
This class is deprecated. Use
NetQuarry.ExpressionParser.Parse.
Namespace:
NetQuarry.Data
Assembly:
EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [ObsoleteAttribute("This class has been deprecated and is superceded by NetQuarry.ExpressionParser.Parse.")]
public static FieldExpressionAttrs Parse(
string expr,
out string flags,
out string reference
)
<ObsoleteAttribute("This class has been deprecated and is superceded by NetQuarry.ExpressionParser.Parse.")>
Public Shared Function Parse (
expr As String,
<OutAttribute> ByRef flags As String,
<OutAttribute> ByRef reference As String
) As FieldExpressionAttrs
Parameters
- expr
- Type: SystemString
The expression to parse. - flags
- Type: SystemString
The extract flag characters. - reference
- Type: SystemString
The expression reference with flags removed.
Return Value
Type:
FieldExpressionAttrsThe flags specified at the start of the reference.
See Also