Engine.Check Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Check(ParseResult, RecordType) | |
| Check(String, ParserOptions, ReadOnlySymbolTable) | |
| Check(String, RecordType, ParserOptions) |
Parse and Bind an expression. |
Check(ParseResult, RecordType)
public Microsoft.PowerFx.CheckResult Check(Microsoft.PowerFx.ParseResult parse, Microsoft.PowerFx.Types.RecordType parameterType = default);
member this.Check : Microsoft.PowerFx.ParseResult * Microsoft.PowerFx.Types.RecordType -> Microsoft.PowerFx.CheckResult
Public Function Check (parse As ParseResult, Optional parameterType As RecordType = Nothing) As CheckResult
Parameters
- parse
- ParseResult
- parameterType
- RecordType
Returns
Applies to
Check(String, ParserOptions, ReadOnlySymbolTable)
public Microsoft.PowerFx.CheckResult Check(string expressionText, Microsoft.PowerFx.ParserOptions options = default, Microsoft.PowerFx.ReadOnlySymbolTable symbolTable = default);
member this.Check : string * Microsoft.PowerFx.ParserOptions * Microsoft.PowerFx.ReadOnlySymbolTable -> Microsoft.PowerFx.CheckResult
Public Function Check (expressionText As String, Optional options As ParserOptions = Nothing, Optional symbolTable As ReadOnlySymbolTable = Nothing) As CheckResult
Parameters
- expressionText
- String
- options
- ParserOptions
- symbolTable
- ReadOnlySymbolTable
Returns
Applies to
Check(String, RecordType, ParserOptions)
Parse and Bind an expression.
public Microsoft.PowerFx.CheckResult Check(string expressionText, Microsoft.PowerFx.Types.RecordType parameterType, Microsoft.PowerFx.ParserOptions options = default);
member this.Check : string * Microsoft.PowerFx.Types.RecordType * Microsoft.PowerFx.ParserOptions -> Microsoft.PowerFx.CheckResult
Public Function Check (expressionText As String, parameterType As RecordType, Optional options As ParserOptions = Nothing) As CheckResult
Parameters
- expressionText
- String
the expression in plain text.
- parameterType
- RecordType
types of additional args to pass.
- options
- ParserOptions
parser options to use.