TestEnvironmentSystemVariables Property |
variables created by used server and clients, values can be changed but these variables can not be deleted.
Namespace:
Hummingbird.TestFramework.Configuration
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataMemberAttribute]
public ObservableCollection<Variable> SystemVariables { get; set; }
<DataMemberAttribute>
Public Property SystemVariables As ObservableCollection(Of Variable)
Get
Set
public:
[DataMemberAttribute]
property ObservableCollection<Variable^>^ SystemVariables {
ObservableCollection<Variable^>^ get ();
void set (ObservableCollection<Variable^>^ value);
}
[<DataMemberAttribute>]
member SystemVariables : ObservableCollection<Variable> with get, set
Property Value
Type:
ObservableCollectionVariableRemarks
User defined variables are more priority than these SystemVariables, if the variable of the same name exists both in
EnvironmentVariables and
SystemVariables, the one in EnvironmentVariables will be taken account.
See Also