SendGenericCommandToCustomConnectorAsync Method
Overloads
| SendGenericCommandToCustomConnectorAsync(String, String, String, IEnumerable<String>, String) | 
             Sends a generic command to a custom connector. For more information on the commands that can be sent to a custom connector, see the QVX SDK help.  | 
        
      
    |
| SendGenericCommandToCustomConnectorAsync(AsyncHandle, String, String, String, IEnumerable<String>, String) | 
             Sends a generic command to a custom connector. For more information on the commands that can be sent to a custom connector, see the QVX SDK help.  | 
        
      
    |
| SendGenericCommandToCustomConnectorAsync<T>(AsyncHandle, Func<Response, T>, String, String, String, IEnumerable<String>, String) | 
             Sends a generic command to a custom connector. For more information on the commands that can be sent to a custom connector, see the QVX SDK help.  | 
        
      
    
SendGenericCommandToCustomConnectorAsync(String, String, String, IEnumerable<String>, String)
Sends a generic command to a custom connector.
For more information on the commands that can be sent to a custom connector, see the QVX SDK help.
Declaration
      public Task<string> SendGenericCommandToCustomConnectorAsync([QixName("qProvider")] string provider, [QixName("qCommand")] string command, [QixName("qMethod")] string method, [QixName("qParameters")] IEnumerable<string> parameters, [QixName("qAppendConnection")] string appendConnection)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | provider | 
           Connector file name. Command to be executed by the connector.  | 
      
| System.String | command | 
           One of: 
  | 
      
| System.String | method | 
           Method name to be used within the command. The available methods depend on the chosen connector.  | 
      
| System.Collections.Generic.IEnumerable<System.String> | parameters | 
           Parameters of the command. No parameters are required.  | 
      
| System.String | appendConnection | 
           Name of the connection.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.String> | 
Implements
SendGenericCommandToCustomConnectorAsync(AsyncHandle, String, String, String, IEnumerable<String>, String)
Sends a generic command to a custom connector.
For more information on the commands that can be sent to a custom connector, see the QVX SDK help.
Declaration
      public Task<string> SendGenericCommandToCustomConnectorAsync(AsyncHandle asyncHandle, [QixName("qProvider")] string provider, [QixName("qCommand")] string command, [QixName("qMethod")] string method, [QixName("qParameters")] IEnumerable<string> parameters, [QixName("qAppendConnection")] string appendConnection)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.String | provider | 
           Connector file name. Command to be executed by the connector.  | 
      
| System.String | command | 
           One of: 
  | 
      
| System.String | method | 
           Method name to be used within the command. The available methods depend on the chosen connector.  | 
      
| System.Collections.Generic.IEnumerable<System.String> | parameters | 
           Parameters of the command. No parameters are required.  | 
      
| System.String | appendConnection | 
           Name of the connection.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.String> | 
Implements
SendGenericCommandToCustomConnectorAsync<T>(AsyncHandle, Func<Response, T>, String, String, String, IEnumerable<String>, String)
Sends a generic command to a custom connector.
For more information on the commands that can be sent to a custom connector, see the QVX SDK help.
Declaration
      public Task<T> SendGenericCommandToCustomConnectorAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qProvider")] string provider, [QixName("qCommand")] string command, [QixName("qMethod")] string method, [QixName("qParameters")] IEnumerable<string> parameters, [QixName("qAppendConnection")] string appendConnection)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.Func<Response, T> | onResult | 
           Continuation function  | 
      
| System.String | provider | 
           Connector file name. Command to be executed by the connector.  | 
      
| System.String | command | 
           One of: 
  | 
      
| System.String | method | 
           Method name to be used within the command. The available methods depend on the chosen connector.  | 
      
| System.Collections.Generic.IEnumerable<System.String> | parameters | 
           Parameters of the command. No parameters are required.  | 
      
| System.String | appendConnection | 
           Name of the connection.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |