Available Citrix Adapters
In the Citrix integration Quick Start, there is an application adapter sample that demonstrates how to process DDA actions. Refer to the following code sample.
<adapter>
<type>Microsoft.Ccf.Samples.Citrix.SampleCitrixAdapter, Microsoft.Ccf.Samples.Citrix.ApplicationAdapter</type>
</adapter>
This sample does not use a data-driven adapter; however, it does implement a few DDA controls, and they are described below. For each control, the suffix is added to GetControlValue to complete the control value name, for example: GetControlValue_queryinfo.
- _queryinfo – If successful, GetControlValue returns the process ID, process file name, and top-window handle,
- _caption – GetControlValue returns the window caption text of the found top-window handle.
- _class – GetControlValue returns the window class text of the found top-window handle.
You can examine each of the examples in the source code folder. Any controls under DataDrivenAdapterBindings will respond true when a FindControl is issued against the control name.
Show: