Interface IConfigurable<TOptions>
- Namespace
- Cuemon.Configuration
- Assembly
- Cuemon.Core.dll
Provides a generic way to support the options pattern on a class level.
public interface IConfigurable<out TOptions>
where TOptions : class, IParameterObject, new()
Type Parameters
TOptions
The type of the configured options.
Properties
Options
Gets the configured options of this instance.
TOptions Options { get; }
Property Value
- TOptions
The configured options of this instance.