Click or drag to resize

MacroPluginExecuteProtocol Method

Is called from the articy:// protocol handler if the called url is like articy://./plugin/<technical name of plugin>/<cmd>

Namespace:  Articy.Api.Plugins
Assembly:  ArticyApp (in ArticyApp.dll) Version: 1.0.0
Syntax
C#
public virtual bool ExecuteProtocol(
	string aCmd,
	Dictionary<string, string> aUrlParams
)

Parameters

aCmd
Type: SystemString
the name of the command for this plugin (3rd part of the url path)
aUrlParams
Type: System.Collections.GenericDictionaryString, String
the query params of the url. If the path has additional parts they are added as additional parameter named '_path'

Return Value

Type: Boolean
true if the request was handled, false otherwise
See Also