Table of Contents

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

name string

The 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

int

Name

Gets the name of the setup.

public string Name { get; }

Property Value

string

Methods

Add(ISetting)

Adds a setting to the setup.

public void Add(ISetting setting)

Parameters

setting ISetting

The setting to add.