IOptionsCollection Interface

Represents a collection of options and its values with a convenient methods to get read/write access to them.

Definition

Namespace: SMath.Manager
Assembly: SMath.Manager (in SMath.Manager.dll) Version: 1.73.9126.0
C#
public interface IOptionsCollection : IEnumerable<KeyValuePair<string, string>>, 
	IEnumerable
Implements
IEnumerableKeyValuePairString, String, IEnumerable

Properties

Item Gets or sets a string representation of the option value.

Methods

GetBoolean Returns value of the option in boolean format.
GetCollection Returns a dictionary of the options with values where name of the option start with a given name.
GetEnumeratorReturns an enumerator that iterates through the collection.
(Inherited from IEnumerableKeyValuePairString, String)
GetInt Returns value of the option in integer format.
GetSingle Returns value of the option in the floating number format.
GetString Returns value of the option as a string.

See Also