public class OptionsCollection : IEnumerable<KeyValuePair<string, string>>,
IEnumerable
Public Class OptionsCollection
Implements IEnumerable(Of KeyValuePair(Of String, String)),
IEnumerable
public ref class OptionsCollection : IEnumerable<KeyValuePair<String^, String^>>,
IEnumerable
type OptionsCollection =
class
interface IEnumerable<KeyValuePair<string, string>>
interface IEnumerable
end
OptionsCollection | Default constructor of the OptionsCollection object. |
Item | Gets or sets a string representation of the option value. |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
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. |
GetEnumerator | Returns enumerator of the available options. |
GetHashCode | Serves as the default hash function. (Inherited from Object) |
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. |
GetType | Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) |
ToString | Returns a string that represents the current object. (Inherited from Object) |
TryParseBoolean | Tries to parse a setting of type Boolean from a string. |
TryParseInt | Tries to parse a setting of type Int32 from a string. |
data | Dictionary of the options and its values. |
IEnumerable.GetEnumerator | Returns an enumerator that iterates through a collection. |