Set an ICA property before connecting to the Citrix server.
Namespace: Facilita.Fc.CitrixAssembly: fcCitrix (in fcCitrix.dll) Version: 9.5.7.98
public void SetIcaProperty(
string property,
string value
)
public void SetIcaProperty(
string property,
string value
)
Parameters
- property
- Type: System String
An ICA property
- value
- Type: System String
The property value to set.
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 SetIcaProperty("username", @"citrixserver\citrixuser");
SetIcaProperty("password", "MyPassword");
SetIcaProperty("EncryptionLevelSession", "EncRC5-128");
SetIcaProperty("DesiredColor", "8");
SetIcaProperty("FontSmoothingType", "1");
SetIcaProperty("username", @"citrixserver\citrixuser");
SetIcaProperty("password", "MyPassword");
SetIcaProperty("EncryptionLevelSession", "EncRC5-128");
SetIcaProperty("DesiredColor", "8");
SetIcaProperty("FontSmoothingType", "1");