Microsoft.Extensions.Configuration.Xml 9.0.0-preview.1.24080.9

About

XML configuration provider implementation for Microsoft.Extensions.Configuration. This package enables you to read configuration parameters from XML files. You can use XmlConfigurationExtensions.AddXmlFile extension method on IConfigurationBuilder to add XML configuration provider to the configuration builder.

How to Use

The following example shows how to read the application configuration from XML file.

using System;
using Microsoft.Extensions.Configuration;

class Program
{
    static void Main()
    {
        // Build a configuration object from XML file
        IConfiguration config = new ConfigurationBuilder()
            .AddXmlFile("appsettings.xml")
            .Build();

        // Get a configuration section
        IConfigurationSection section = config.GetSection("Settings");

        // Read simple values
        Console.WriteLine($"Server: {section["Server"]}");
        Console.WriteLine($"Database: {section["Database"]}");

        // Read nested values
        Console.WriteLine($"IPAddress: {section["Endpoint:IPAddress"]}");
        Console.WriteLine($"Port: {section["Endpoint:Port"]}");
    }
}

To run this example, include an appsettings.xml file with the following content in your project:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <Settings>
    <Server>example.com</Server>
    <Database>Northwind</Database>
    <Endpoint>
      <IPAddress>192.168.0.10</IPAddress>
      <Port>80</Port>
    </Endpoint>
  </Settings>  
</configuration>

You can include a configuration file using a code like this in your .csproj file:

<ItemGroup>
  <Content Include="appsettings.xml">
    <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  </Content>
</ItemGroup>

Additional Documentation

Feedback & Contributing

Microsoft.Extensions.Configuration.Xml is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on Microsoft.Extensions.Configuration.Xml.

Packages Downloads
IppDotNetSdkForQuickBooksApiV3
The IPP .NET SDK for QuickBooks V3 is a set of .NET classes that make it easier to call QuickBooks APIs. This is the .Net Standard 2.0 version of the .Net SDK
8
IppDotNetSdkForQuickBooksApiV3
The IPP .NET SDK for QuickBooks V3 is a set of .NET classes that make it easier to call QuickBooks APIs. This is the .Net Standard 2.0 version of the .Net SDK
7
IppDotNetSdkForQuickBooksApiV3
The IPP .NET SDK for QuickBooks V3 is a set of .NET classes that make it easier to call QuickBooks APIs. This is the .Net Standard 2.0 version of the .Net SDK
6
IppDotNetSdkForQuickBooksApiV3
The IPP .NET SDK for QuickBooks V3 is a set of .NET classes that make it easier to call QuickBooks APIs. This is the .Net Standard 2.0 version of the .Net SDK
5
IppDotNetSdkForQuickBooksApiV3
The IPP .NET SDK for QuickBooks V3 is a set of .NET classes that make it easier to call QuickBooks APIs. This is the .Net Standard 2.0 version of the .Net SDK
4
IppDotNetSdkForQuickBooksApiV3
The IPP .NET SDK for QuickBooks V3 is a set of .NET classes that make it easier to call QuickBooks APIs. This is the .Net Standard 2.0 version of the .Net SDK
3

https://go.microsoft.com/fwlink/?LinkID=799421

.NET Framework 4.6.2

.NET Standard 2.0

.NET 9.0

.NET 8.0

Version Downloads Last updated
9.0.0 5 12/06/2024
9.0.0-rc.2.24473.5 1 10/14/2024
9.0.0-rc.1.24431.7 3 09/30/2024
9.0.0-preview.7.24405.7 3 08/15/2024
9.0.0-preview.6.24327.7 3 09/11/2024
9.0.0-preview.5.24306.7 3 06/16/2024
9.0.0-preview.4.24266.19 3 05/31/2024
9.0.0-preview.3.24172.9 3 05/31/2024
9.0.0-preview.2.24128.5 3 05/31/2024
9.0.0-preview.1.24080.9 3 05/31/2024
8.0.1 3 10/14/2024
8.0.0 2 05/31/2024
8.0.0-rc.2.23479.6 1 06/03/2024
8.0.0-rc.1.23419.4 3 05/31/2024
8.0.0-preview.7.23375.6 4 05/31/2024
8.0.0-preview.6.23329.7 3 05/31/2024
8.0.0-preview.5.23280.8 3 05/31/2024
8.0.0-preview.4.23259.5 6 05/31/2024
8.0.0-preview.3.23174.8 4 05/31/2024
8.0.0-preview.2.23128.3 3 05/31/2024
8.0.0-preview.1.23110.8 4 05/31/2024
7.0.0 3 06/02/2024
7.0.0-rc.2.22472.3 1 06/03/2024
7.0.0-rc.1.22426.10 0 09/14/2022
7.0.0-preview.7.22375.6 5 05/31/2024
7.0.0-preview.6.22324.4 3 06/06/2024
7.0.0-preview.5.22301.12 3 05/31/2024
7.0.0-preview.4.22229.4 2 05/31/2024
7.0.0-preview.3.22175.4 7 05/31/2024
7.0.0-preview.2.22152.2 2 06/01/2024
7.0.0-preview.1.22076.8 7 05/31/2024
6.0.2-mauipre.1.22102.15 4 05/31/2024
6.0.2-mauipre.1.22054.8 7 05/31/2024
6.0.1 0 11/12/2024
6.0.0 3 05/31/2024
6.0.0-rc.2.21480.5 1 06/03/2024
6.0.0-rc.1.21451.13 2 06/06/2024
6.0.0-preview.7.21377.19 6 05/31/2024
6.0.0-preview.6.21352.12 3 05/31/2024
6.0.0-preview.5.21301.5 4 05/31/2024
6.0.0-preview.4.21253.7 3 05/31/2024
6.0.0-preview.3.21201.4 4 05/31/2024
6.0.0-preview.2.21154.6 0 03/11/2021
6.0.0-preview.1.21102.12 2 05/31/2024
5.0.0 5 06/02/2024
5.0.0-rc.2.20475.5 2 06/01/2024
5.0.0-rc.1.20451.14 3 06/03/2024
5.0.0-preview.8.20407.11 4 05/31/2024
5.0.0-preview.7.20364.11 3 05/31/2024
5.0.0-preview.6.20305.6 4 05/31/2024
5.0.0-preview.5.20278.1 2 05/31/2024
5.0.0-preview.4.20251.6 3 05/31/2024
5.0.0-preview.3.20215.2 3 05/31/2024
5.0.0-preview.2.20160.3 4 05/31/2024
5.0.0-preview.1.20120.4 7 05/31/2024
3.1.32 3 05/31/2024
3.1.31 1 06/03/2024
3.1.30 2 06/03/2024
3.1.29 2 06/03/2024
3.1.28 4 11/01/2024
3.1.27 2 06/02/2024
3.1.26 2 06/02/2024
3.1.25 2 05/31/2024
3.1.24 4 11/01/2024
3.1.23 2 06/03/2024
3.1.22 3 05/31/2024
3.1.21 2 06/02/2024
3.1.20 2 06/03/2024
3.1.19 2 05/31/2024
3.1.18 2 06/02/2024
3.1.17 2 05/31/2024
3.1.16 2 06/02/2024
3.1.15 2 05/31/2024
3.1.14 3 06/02/2024
3.1.13 9 06/02/2024
3.1.12 2 05/31/2024
3.1.11 3 06/03/2024
3.1.10 2 06/02/2024
3.1.9 2 06/01/2024
3.1.8 3 06/06/2024
3.1.7 6 05/31/2024
3.1.6 3 06/06/2024
3.1.5 6 06/03/2024
3.1.4 2 06/02/2024
3.1.3 2 06/03/2024
3.1.2 2 06/03/2024
3.1.1 4 11/01/2024
3.1.0 2 06/01/2024
3.1.0-preview3.19553.2 3 06/02/2024
3.1.0-preview2.19525.4 2 05/31/2024
3.1.0-preview1.19506.1 2 06/03/2024
3.0.3 4 06/02/2024
3.0.2 1 06/03/2024
3.0.1 1 06/02/2024
3.0.0 2 06/03/2024
3.0.0-rc1.19456.10 4 06/01/2024
3.0.0-preview9.19423.4 3 06/01/2024
3.0.0-preview8.19405.4 7 05/31/2024
3.0.0-preview7.19362.4 7 05/31/2024
3.0.0-preview6.19304.6 3 05/31/2024
3.0.0-preview5.19227.9 3 05/31/2024
3.0.0-preview4.19216.2 3 05/31/2024
3.0.0-preview3.19153.1 3 05/31/2024
3.0.0-preview.19074.2 3 05/31/2024
3.0.0-preview.18572.1 3 05/31/2024
2.2.0 2 06/06/2024
2.2.0-preview3-35497 6 06/01/2024
2.2.0-preview2-35157 3 05/31/2024
2.2.0-preview1-35029 4 05/31/2024
2.1.1 4 06/03/2024
2.1.0 3 11/01/2024
2.1.0-rc1-final 4 05/31/2024
2.1.0-preview2-final 0 04/10/2018
2.1.0-preview1-final 4 05/31/2024
2.0.2 3 06/06/2024
2.0.1 5 05/31/2024
2.0.0 5 06/03/2024
2.0.0-preview2-final 3 06/01/2024
2.0.0-preview1-final 3 05/31/2024
1.1.2 2 06/01/2024
1.1.1 2 05/31/2024
1.1.0 2 06/02/2024
1.1.0-preview1-final 3 05/31/2024
1.0.2 2 05/31/2024
1.0.1 1 06/02/2024
1.0.0 6 05/31/2024
1.0.0-rc2-final 4 06/01/2024
1.0.0-rc1-final 3 05/31/2024