Class ConfigurationSection<T>
Inheritance
System.Object
ConfigurationSection<T>
Implements
System.Collections.Generic.IEnumerable <System.Collections.Generic.KeyValuePair <IConfigurationOptionDescriptor , IConfigurationValue >>
System.Collections.IEnumerable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Snowflake.Configuration
Assembly: Snowflake.Framework.dll
Syntax
public class ConfigurationSection<T> : IConfigurationSection<T>, IConfigurationSection, IEnumerable<KeyValuePair<IConfigurationOptionDescriptor, IConfigurationValue>>, IEnumerable where T : class, IConfigurationSection<T>
Type Parameters
Name | Description |
---|---|
T |
Properties
Configuration
Declaration
public T Configuration { get; }
Property Value
Type | Description |
---|---|
T |
Descriptor
Declaration
public IConfigurationSectionDescriptor Descriptor { get; }
Property Value
Type | Description |
---|---|
IConfiguration |
Item[String]
Declaration
public object this[string key] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System. |
key |
Property Value
Type | Description |
---|---|
System. |
ValueCollection
Declaration
public IConfigurationValueCollection ValueCollection { get; }
Property Value
Type | Description |
---|---|
IConfiguration |
Values
Declaration
public IReadOnlyDictionary<string, IConfigurationValue> Values { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
GetEnumerator()
Declaration
public IEnumerator<KeyValuePair<IConfigurationOptionDescriptor, IConfigurationValue>> GetEnumerator()
Returns
Type | Description |
---|---|
System. |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System. |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable