App SendGenericCommandToCustomConnectorAsync T  Method (String, String, String, IEnumerable String , String, Func Response, T , String)Qlik Sense .NET SDK - API Reference

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.

Namespace: Qlik.Engine
Assembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.0.1.0 (1.0.1.0)
Syntax

public Task<T> SendGenericCommandToCustomConnectorAsync<T>(
	string provider,
	string command,
	string method,
	IEnumerable<string> parameters,
	string appendConnection,
	Func<Response, T> onResult,
	string userHandle = null
)

Parameters

provider
Type: OnlineSystem String
Connector file name. Command to be executed by the connector.
command
Type: OnlineSystem String
One of: JsonRequest GetCustomCaption IsConnected DisableQlikViewSelectButton HaveStarField
method
Type: OnlineSystem String
Method name to be used within the command. The available methods depend on the chosen connector.
parameters
Type: OnlineSystem.Collections.Generic IEnumerable OnlineString 
Parameters of the command. No parameters are required. This parameter is optional.
appendConnection
Type: OnlineSystem String
Name of the connection. This parameter is optional.
onResult
Type: OnlineSystem Func Response, T 
Continuation function
userHandle (Optional)
Type: OnlineSystem String
Handle identifier
Type Parameters

T

Return Value

Type: OnlineTask T 

Implements

IApp SendGenericCommandToCustomConnectorAsync T (String, String, String, IEnumerable String , String, Func Response, T , String)
See Also