CheckNumberOrExpressionAsync Method
Overloads
| CheckNumberOrExpressionAsync(String) | Checks if: * A given expression is valid. * A number is correct according to the locale. | |
| CheckNumberOrExpressionAsync(AsyncHandle, String) | Checks if: * A given expression is valid. * A number is correct according to the locale. | |
| CheckNumberOrExpressionAsync<T>(AsyncHandle, Func<Response, T>, String) | Checks if: * A given expression is valid. * A number is correct according to the locale. | 
CheckNumberOrExpressionAsync(String)
Checks if:
- A given expression is valid.
- A number is correct according to the locale.
Declaration
      public Task<CheckNumberOrExpressionResult> CheckNumberOrExpressionAsync([QixName("qExpr")] string expr)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | expr | Expression to check. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<CheckNumberOrExpressionResult> | 
Implements
CheckNumberOrExpressionAsync(AsyncHandle, String)
Checks if:
- A given expression is valid.
- A number is correct according to the locale.
Declaration
      public Task<CheckNumberOrExpressionResult> CheckNumberOrExpressionAsync(AsyncHandle asyncHandle, [QixName("qExpr")] string expr)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.String | expr | Expression to check. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<CheckNumberOrExpressionResult> | 
Implements
CheckNumberOrExpressionAsync<T>(AsyncHandle, Func<Response, T>, String)
Checks if:
- A given expression is valid.
- A number is correct according to the locale.
Declaration
      public Task<T> CheckNumberOrExpressionAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qExpr")] string expr)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | Handle to asynchronous method request | 
| System.Func<Response, T> | onResult | Continuation function | 
| System.String | expr | Expression to check. | 
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |