GetBaseBNFHashAsync Method
Overloads
| GetBaseBNFHashAsync(BNFType) | 
             Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.  | 
        
      
    |
| GetBaseBNFHashAsync(AsyncHandle, BNFType) | 
             Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.  | 
        
      
    |
| GetBaseBNFHashAsync<T>(AsyncHandle, Func<Response, T>, BNFType) | 
             Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.  | 
        
      
    
GetBaseBNFHashAsync(BNFType)
Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.
Declaration
      Task<string> GetBaseBNFHashAsync([QixName("qBnfType")] BNFType bnfType)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| BNFType | bnfType | 
           The type of grammar to return: 
  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.String> | 
GetBaseBNFHashAsync(AsyncHandle, BNFType)
Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.
Declaration
      Task<string> GetBaseBNFHashAsync(AsyncHandle asyncHandle, [QixName("qBnfType")] BNFType bnfType)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| BNFType | bnfType | 
           The type of grammar to return: 
  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.String> | 
GetBaseBNFHashAsync<T>(AsyncHandle, Func<Response, T>, BNFType)
Gets a string hash calculated from the current Backus-Naur Form (BNF) grammar of the Qlik engine scripting language. If the hash changes between subsequent calls to this method, this indicates that the BNF grammar has changed.
Declaration
      Task<T> GetBaseBNFHashAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qBnfType")] BNFType bnfType)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.Func<Response, T> | onResult | 
           Continuation function  | 
      
| BNFType | bnfType | 
           The type of grammar to return: 
  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |