Skip to content

MartinJohns/ConfigurationContrib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Configuration Contrib

Contributions to the aspnet/Configuration libraries.

Microsoft.Extensions.Configuration.ImmutableBinder

Related to the Microsoft.Extensions.Configuration.Binder project this project provides a way to bind configurations to an immutable type. In the current version the type must simply provide a single constructor that will be invoked, passing all arguments from the configuration.

Example:

// Example immutable options class
public class ComplexOptions
{
    // No default constructor - only one accepting all values
    public ComplexOptions(
        string host,
        TimeSpan retentionTime,
        DateTime startDate,
        DateTime? endDate)
    {
        Host = host;
        RetentionTime = retentionTime;
        StartDate = startDate;
        EndDate = endDate;
    }

    // Using getter-only auto-properties
    public string Host { get; }
    public TimeSpan RetentionTime { get; }
    public DateTime StartDate { get; }
    public DateTime? EndDate { get; }
}

// Preparing some example data
var dict = new Dictionary<string, string>
{
    ["Section:Host"] = "www.github.com",
    ["Section:RetentionTime"] = "00:20:00",
    ["Section:StartDate"] = "2017-07-27T00:06:00",
    ["Section:EndDate"] = ""
};
var configurationBuilder = new ConfigurationBuilder().AddInMemoryCollection(dict);
var config = configurationBuilder.Build();

// Retrieve the options
var options = section.ImmutableBind<ComplexOptions>(config.GetSection("Section"));

Microsoft.Extensions.Configuration.Yaml

Related to the Microsoft.Extensions.Configuration.Json project this project provides a way to load configurations from YAML files.

Example:

var configurationBuilder = new ConfigurationBuilder()
    .AddYamlFile("myOptions.yml");
var config = configurationBuilder.Build();

About

Contributions to the aspnet/Configuration libraries.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages