Interface IParsesPathExpression
An object which is able to parse a path expression string into a model.
Namespace: ZptSharp.Expressions.PathExpressions
Assembly: ZptSharp.dll
Syntax
public interface IParsesPathExpression
Methods
| Improve this Doc View SourceParse(String)
Gets a PathExpression model object from a specified expression
string.
Declaration
PathExpression Parse(string expression)
Parameters
Type | Name | Description |
---|---|---|
System.String | expression | The expression string. |
Returns
Type | Description |
---|---|
PathExpression | The parsed model object. |
Exceptions
Type | Condition |
---|---|
CannotParsePathException | If the expression cannot be parsed. |