Class Setup
- Namespace
- Csra
- Assembly
- Csra.dll
Setup - a named collection of settings.
[Serializable]
public class Setup
- Inheritance
-
Setup
- Inherited Members
Constructors
Setup(string)
Creates a new setup with the specified name.
public Setup(string name)
Parameters
namestringThe setup name - an arbitrary, case sensitive string that can include numbers, spaces and special characters. Empty and null strings are not supported.
Properties
Count
Gets the number of settings contained in the setup.
public int Count { get; }
Property Value
Name
Gets the name of the setup.
public string Name { get; }
Property Value
Methods
Add(ISetting)
Adds a setting to the setup.
public void Add(ISetting setting)
Parameters
settingISettingThe setting to add.