CitrixVirtualUserScript SetIcaProperty Method C# API
Set an ICA property before connecting to the Citrix server.

Namespace: Facilita.Fc.Citrix
Assembly: fcCitrix (in fcCitrix.dll) Version: 9.5.5.77
Syntax

public void SetIcaProperty(
	string property,
	string value
)

Parameters

property
Type: System String
An ICA property
value
Type: System String
The property value to set.
Remarks

The ICA property values can be before connection using this call. The properties are defined in Understanding ICA file contents and in Citrix's ICA settings reference. The values are included in the generated script based on the values in the Citrix Connection Properties dialog. The properties must be set before calling Connect 
Examples

SetIcaProperty("username", @"citrixserver\citrixuser");
SetIcaProperty("password", "MyPassword");
SetIcaProperty("EncryptionLevelSession", "EncRC5-128");
SetIcaProperty("DesiredColor", "8");
SetIcaProperty("FontSmoothingType", "1");
See Also