VirtualUserScript SetList Method C# API
Sets an ArrayList value in the dictionary.

Namespace: Facilita.Fc.Runtime
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

public void SetList(
	string key,
	ArrayList val
)

Parameters

key
Type: System String
The key to associate with val in the dictionary.
val
Type: System.Collections ArrayList
The ArrayList to be associated with the key in the dictionary.

Implements

IDataDictionary SetList(String, ArrayList)
Remarks

key is associated with the value in the dictionary. If the key already exists in the dictionary then the old value is replaced by the new value, otherwise a new key/value pair is added to the dictionary.
Examples

The following example demonstrates setting an ArrayList in the dictionary.
ArrayList hostList = new ArrayList();
hostList.Add("www.testplant.com");
SetList("hosts", hostList);
See Also