RunFunctionInProfile Method (string, string, string, XJEaseParameterCollection, XJEaseParameterCollection)
Runs an XJEase function with the specified name from the given device's test device file. The XJEase function is run synchronously, i.e. control does not return from this method until all the function has completed.
Type: Runner
Namespace: XJTAG.Integration.XJRunner
Syntax
public void RunFunctionInProfile(string device, string functionName, string profile, XJEaseParameterCollection inputArgs, XJEaseParameterCollection outputArgs)
Parameters
- device
Type: string
The name of the device on which to run the function. If there are multiple boards in the project, the device name should be in the form Board.Device.
- functionName
Type: string
The name of the XJEase test function to run.
- profile
Type: string
The name of the profile to run the function in.
- inputArgs
Type: XJEaseParameterCollection
The XJEaseParameterCollection of input arguments for the function. An arbitrary number of IntParameter, StringParameter and XJEaseArrayParameter arguments can be added corresponding to the parameters for the function to be run.
- outputArgs
Type: XJEaseParameterCollection
The XJEaseParameterCollection of initial values for the output arguments, which can be initialised as null.
Exceptions
- RuntimeException
There was an error running the XJEase code.
- System.ArgumentException
The function name was an empty string.
- System.ArgumentNullException
Any of the arguments (apart from profile) were null.
- System.ObjectDisposedException
The Runner has already been disposed.
XJTAG v4.2.5
