Microsoft.Extensions.Configuration.Xml 8.0.0-preview.5.23280.8
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.
For more information, see the documentation: XML configuration provider.
Example
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>
Showing the top 20 packages that depend on Microsoft.Extensions.Configuration.Xml.
Packages | Downloads |
---|---|
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
|
25 |
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
|
26 |
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
|
29 |
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
|
30 |
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
|
31 |
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
25 |
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
26 |
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
28 |
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
29 |
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
31 |
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
32 |
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
34 |
https://go.microsoft.com/fwlink/?LinkID=799421
.NET Framework 4.6.2
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.FileProviders.Abstractions (>= 8.0.0-preview.5.23280.8)
- System.Security.Cryptography.Xml (>= 8.0.0-preview.5.23280.8)
.NET Standard 2.0
- System.Security.Cryptography.Xml (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.FileProviders.Abstractions (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0-preview.5.23280.8)
.NET 8.0
- System.Security.Cryptography.Xml (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.FileProviders.Abstractions (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0-preview.5.23280.8)
.NET 7.0
- System.Security.Cryptography.Xml (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.FileProviders.Abstractions (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0-preview.5.23280.8)
.NET 6.0
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.FileProviders.Abstractions (>= 8.0.0-preview.5.23280.8)
- System.Security.Cryptography.Xml (>= 8.0.0-preview.5.23280.8)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.0-preview.5.23280.8)
Version | Downloads | Last updated |
---|---|---|
9.0.0-rc.2.24473.5 | 4 | 10/18/2024 |
9.0.0-rc.1.24431.7 | 5 | 09/20/2024 |
9.0.0-preview.7.24405.7 | 5 | 08/21/2024 |
9.0.0-preview.6.24327.7 | 25 | 07/20/2024 |
9.0.0-preview.5.24306.7 | 19 | 07/20/2024 |
9.0.0-preview.4.24266.19 | 20 | 07/20/2024 |
9.0.0-preview.3.24172.9 | 23 | 07/20/2024 |
9.0.0-preview.2.24128.5 | 19 | 07/20/2024 |
9.0.0-preview.1.24080.9 | 25 | 07/20/2024 |
8.0.1 | 3 | 10/22/2024 |
8.0.0 | 21 | 07/20/2024 |
8.0.0-rc.2.23479.6 | 18 | 07/20/2024 |
8.0.0-rc.1.23419.4 | 24 | 07/20/2024 |
8.0.0-preview.7.23375.6 | 28 | 07/20/2024 |
8.0.0-preview.6.23329.7 | 21 | 07/20/2024 |
8.0.0-preview.5.23280.8 | 27 | 07/20/2024 |
8.0.0-preview.4.23259.5 | 28 | 07/20/2024 |
8.0.0-preview.3.23174.8 | 20 | 07/20/2024 |
8.0.0-preview.2.23128.3 | 23 | 07/20/2024 |
8.0.0-preview.1.23110.8 | 28 | 07/20/2024 |
7.0.0 | 31 | 07/20/2024 |
7.0.0-rc.2.22472.3 | 29 | 07/20/2024 |
7.0.0-rc.1.22426.10 | 19 | 07/20/2024 |
7.0.0-preview.7.22375.6 | 24 | 07/20/2024 |
7.0.0-preview.6.22324.4 | 24 | 07/20/2024 |
7.0.0-preview.5.22301.12 | 30 | 07/20/2024 |
7.0.0-preview.4.22229.4 | 21 | 07/20/2024 |
7.0.0-preview.3.22175.4 | 25 | 07/20/2024 |
7.0.0-preview.2.22152.2 | 20 | 07/20/2024 |
7.0.0-preview.1.22076.8 | 23 | 07/20/2024 |
6.0.0 | 26 | 07/20/2024 |
6.0.0-rc.2.21480.5 | 24 | 07/20/2024 |
6.0.0-rc.1.21451.13 | 22 | 07/20/2024 |
6.0.0-preview.7.21377.19 | 25 | 07/20/2024 |
6.0.0-preview.6.21352.12 | 27 | 07/20/2024 |
6.0.0-preview.5.21301.5 | 21 | 07/20/2024 |
6.0.0-preview.4.21253.7 | 24 | 07/20/2024 |
6.0.0-preview.3.21201.4 | 27 | 07/20/2024 |
6.0.0-preview.2.21154.6 | 19 | 07/20/2024 |
6.0.0-preview.1.21102.12 | 19 | 07/20/2024 |
5.0.0 | 20 | 07/20/2024 |
5.0.0-rc.2.20475.5 | 17 | 07/20/2024 |
5.0.0-rc.1.20451.14 | 21 | 07/20/2024 |
5.0.0-preview.8.20407.11 | 24 | 07/20/2024 |
5.0.0-preview.7.20364.11 | 26 | 07/20/2024 |
5.0.0-preview.6.20305.6 | 33 | 07/20/2024 |
5.0.0-preview.5.20278.1 | 20 | 07/20/2024 |
5.0.0-preview.4.20251.6 | 23 | 07/20/2024 |
5.0.0-preview.3.20215.2 | 32 | 07/20/2024 |
5.0.0-preview.2.20160.3 | 24 | 07/20/2024 |
5.0.0-preview.1.20120.4 | 20 | 07/20/2024 |
3.1.32 | 21 | 07/20/2024 |
3.1.31 | 22 | 07/20/2024 |
3.1.30 | 16 | 07/20/2024 |
3.1.29 | 21 | 07/20/2024 |
3.1.28 | 26 | 07/20/2024 |
3.1.27 | 17 | 07/20/2024 |
3.1.26 | 21 | 07/20/2024 |
3.1.25 | 26 | 07/20/2024 |
3.1.24 | 24 | 07/20/2024 |
3.1.23 | 27 | 07/20/2024 |
3.1.22 | 28 | 07/20/2024 |
3.1.21 | 18 | 07/20/2024 |
3.1.20 | 24 | 07/20/2024 |
3.1.19 | 23 | 07/20/2024 |
3.1.18 | 15 | 07/20/2024 |
3.1.17 | 22 | 07/20/2024 |
3.1.16 | 24 | 07/20/2024 |
3.1.15 | 24 | 07/20/2024 |
3.1.14 | 25 | 07/20/2024 |
3.1.13 | 27 | 07/20/2024 |
3.1.12 | 25 | 07/20/2024 |
3.1.11 | 22 | 07/20/2024 |
3.1.10 | 28 | 07/20/2024 |
3.1.9 | 25 | 07/20/2024 |
3.1.8 | 28 | 07/20/2024 |
3.1.7 | 20 | 07/20/2024 |
3.1.6 | 23 | 07/20/2024 |
3.1.5 | 28 | 07/20/2024 |
3.1.4 | 28 | 07/20/2024 |
3.1.3 | 27 | 07/20/2024 |
3.1.2 | 17 | 07/20/2024 |
3.1.1 | 17 | 07/20/2024 |
3.1.0 | 23 | 07/20/2024 |
3.1.0-preview3.19553.2 | 21 | 07/20/2024 |
3.1.0-preview2.19525.4 | 30 | 07/20/2024 |
3.1.0-preview1.19506.1 | 25 | 07/20/2024 |
3.0.3 | 23 | 07/20/2024 |
3.0.2 | 37 | 07/20/2024 |
3.0.1 | 18 | 07/20/2024 |
3.0.0 | 27 | 07/20/2024 |
3.0.0-rc1.19456.10 | 23 | 07/20/2024 |
3.0.0-preview9.19423.4 | 26 | 07/20/2024 |
3.0.0-preview8.19405.4 | 19 | 07/20/2024 |
3.0.0-preview7.19362.4 | 28 | 07/20/2024 |
3.0.0-preview6.19304.6 | 20 | 07/20/2024 |
3.0.0-preview5.19227.9 | 22 | 07/20/2024 |
3.0.0-preview4.19216.2 | 31 | 07/20/2024 |
3.0.0-preview3.19153.1 | 23 | 07/20/2024 |
3.0.0-preview.19074.2 | 23 | 07/20/2024 |
3.0.0-preview.18572.1 | 21 | 07/20/2024 |
2.2.0 | 22 | 07/20/2024 |
2.2.0-preview3-35497 | 24 | 07/20/2024 |
2.2.0-preview2-35157 | 21 | 07/20/2024 |
2.2.0-preview1-35029 | 35 | 07/20/2024 |
2.1.1 | 30 | 07/20/2024 |
2.1.0 | 22 | 07/20/2024 |
2.1.0-rc1-final | 21 | 07/20/2024 |
2.1.0-preview2-final | 30 | 07/20/2024 |
2.1.0-preview1-final | 22 | 07/20/2024 |
2.0.2 | 28 | 07/20/2024 |
2.0.1 | 17 | 07/20/2024 |
2.0.0 | 25 | 07/20/2024 |
2.0.0-preview2-final | 24 | 07/20/2024 |
2.0.0-preview1-final | 26 | 07/20/2024 |
1.1.2 | 19 | 07/20/2024 |
1.1.1 | 23 | 07/20/2024 |
1.1.0 | 24 | 07/20/2024 |
1.1.0-preview1-final | 23 | 07/20/2024 |
1.0.2 | 32 | 07/20/2024 |
1.0.1 | 19 | 07/20/2024 |
1.0.0 | 23 | 07/20/2024 |
1.0.0-rc2-final | 28 | 07/20/2024 |
1.0.0-rc1-final | 22 | 07/20/2024 |