Interface IProcedureParameters
Input filter and data parameters for a procedure.
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface IProcedureParameters
Properties
DataParameters
Gets the map of data parameter names to values.
Declaration
IDictionary<string, string> DataParameters { get; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> | A map of data parameter names to values. |
Remarks
Gets the map of data parameter names to values. The internal map used to store these values is returned and can be modified.
FilterParameters
Gets the map of filter parameter names to values.
Declaration
IDictionary<string, string> FilterParameters { get; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> | A map of filter parameter names to values. |
Remarks
Gets the map of filter parameter names to values. The internal map used to store these values is returned and can be modified.