Microsoft.Extensions.Primitives
9.0.0-preview.4.24266.19
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.Extensions.Primitives --version 9.0.0-preview.4.24266.19
NuGet\Install-Package Microsoft.Extensions.Primitives -Version 9.0.0-preview.4.24266.19
<PackageReference Include="Microsoft.Extensions.Primitives" Version="9.0.0-preview.4.24266.19" />
paket add Microsoft.Extensions.Primitives --version 9.0.0-preview.4.24266.19
#r "nuget: Microsoft.Extensions.Primitives, 9.0.0-preview.4.24266.19"
// Install Microsoft.Extensions.Primitives as a Cake Addin #addin nuget:?package=Microsoft.Extensions.Primitives&version=9.0.0-preview.4.24266.19&prerelease // Install Microsoft.Extensions.Primitives as a Cake Tool #tool nuget:?package=Microsoft.Extensions.Primitives&version=9.0.0-preview.4.24266.19&prerelease
About
Microsoft.Extensions.Primitives
contains isolated types that are used in many places within console or ASP.NET Core applications using framework extensions.
Key Features
- IChangeToken: An interface that represents a token that can notify when a change occurs. This can be used to trigger actions or invalidate caches when something changes. For example, the configuration and file providers libraries use this interface to reload settings or files when they are modified.
- StringValues: A struct that represents a single string or an array of strings. This can be used to efficiently store and manipulate multiple values that are logically a single value. For example, the HTTP headers and query strings libraries use this struct to handle multiple values for the same key.
- StringSegment: A struct that represents a substring of another string. This can be used to avoid allocating new strings when performing operations on parts of a string. For example, the configuration and logging libraries use this struct to parse and format strings.
How to Use
IChangeToken with configuration example
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Primitives;
using System;
class Program
{
static void Main(string[] args)
{
// Create a configuration builder
var configurationBuilder = new ConfigurationBuilder()
.SetBasePath(Environment.CurrentDirectory)
// appsettings.json expected to have the following contents:
// {
// "SomeKey": "SomeValue"
// }
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true);
// Build the configuration
IConfiguration configuration = configurationBuilder.Build();
// Create a change token for the configuration
IChangeToken changeToken = configuration.GetReloadToken();
// Attach a change callback
IDisposable changeTokenRegistration = changeToken.RegisterChangeCallback(state =>
{
Console.WriteLine("Configuration changed!");
IConfigurationRoot root = (IConfigurationRoot)state;
var someValue = root["SomeKey"]; // Access the updated configuration value
Console.WriteLine($"New value of SomeKey: {someValue}");
}, configuration);
// go and update the value of the key SomeKey in appsettings.json.
// The change callback will be invoked when the file is saved.
Console.WriteLine("Listening for configuration changes. Press any key to exit.");
Console.ReadKey();
// Clean up the change token registration when no longer needed
changeTokenRegistration.Dispose();
}
}
StringValues example
using System;
using Microsoft.Extensions.Primitives;
namespace StringValuesSample
{
class Program
{
static void Main(string[] args)
{
// Create a StringValues object from a single string or an array of strings
StringValues single = "Hello";
StringValues multiple = new string[] { "Hello", "World" };
// Use the implicit conversion to string or the ToString method to get the values
Console.WriteLine($"Single: {single}"); // Single: Hello
Console.WriteLine($"Multiple: {multiple}"); // Multiple: Hello,World
// Use the indexer, the Count property, and the IsNullOrEmpty method to access the values
Console.WriteLine($"Multiple[1]: {multiple[1]}"); // Multiple[1]: World
Console.WriteLine($"Single.Count: {single.Count}"); // Single.Count: 1
Console.WriteLine($"Multiple.IsNullOrEmpty: {StringValues.IsNullOrEmpty(multiple)}"); // Multiple.IsNullOrEmpty: False
// Use the Equals method or the == operator to compare two StringValues objects
Console.WriteLine($"single == \"Hello\": {single == "Hello"}"); // single == "Hello": True
Console.WriteLine($"multiple == \"Hello\": {multiple == "Hello"}"); // multiple == "Hello": False
}
}
}
Main Types
The main types provided by this library are:
IChangeToken
StringValues
StringSegment
Additional Documentation
Related Packages
Feedback & Contributing
Microsoft.Extensions.Primitives is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- System.Memory (>= 4.5.5)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
-
.NETStandard 2.0
- System.Memory (>= 4.5.5)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (642)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Primitives:
Package | Downloads |
---|---|
Microsoft.Extensions.Options
Provides a strongly typed way of specifying and accessing settings using dependency injection. |
|
Microsoft.Extensions.Configuration.Abstractions
Provides abstractions of key-value pair based configuration. Interfaces defined in this package are implemented by classes in Microsoft.Extensions.Configuration and other configuration packages. |
|
Microsoft.Extensions.Configuration
Implementation of key-value pair based configuration for Microsoft.Extensions.Configuration. Includes the memory configuration provider. |
|
Microsoft.Extensions.FileProviders.Abstractions
Abstractions of files and directories. Commonly Used Types: Microsoft.Extensions.FileProviders.IDirectoryContents Microsoft.Extensions.FileProviders.IFileInfo Microsoft.Extensions.FileProviders.IFileProvider |
|
Microsoft.Extensions.FileProviders.Physical
File provider for physical files for Microsoft.Extensions.FileProviders. |
GitHub repositories (176)
Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.Primitives:
Repository | Stars |
---|---|
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
|
|
chocolatey/choco
Chocolatey - the package manager for Windows
|
|
JeffreySu/WeiXinMPSDK
微信全平台 .NET SDK, Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 8.0。已支持微信公众号、小程序、小游戏、微信支付、企业微信/企业号、开放平台、JSSDK、微信周边等全平台。 WeChat SDK for C#.
|
|
microsoft/ailab
Experience, Learn and Code the latest breakthrough innovations with Microsoft AI
|
|
aspnet/Mvc
[Archived] ASP.NET Core MVC is a model view controller framework for building dynamic web sites with clean separation of concerns, including the merged MVC, Web API, and Web Pages w/ Razor. Project moved to https://github.com/aspnet/AspNetCore
|
Version | Downloads | Last updated | |
---|---|---|---|
9.0.0-rc.2.24473.5 | 126,123 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 209,698 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 138,307 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 217,922 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 177,111 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 133,644 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 309,052 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 204,515 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 205,294 | 2/13/2024 | |
8.0.0 | 183,961,744 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 2,235,524 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 1,232,266 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 682,988 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 485,557 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 346,689 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 579,196 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 578,037 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 504,982 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 399,754 | 2/21/2023 | |
7.0.0 | 280,513,281 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 1,448,385 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 607,732 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 464,316 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 369,988 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 248,337 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 562,924 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 232,997 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 372,051 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 253,194 | 2/17/2022 | |
6.0.0 | 620,953,514 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 2,049,455 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 778,541 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 896,978 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 449,191 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 416,935 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 1,698,442 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 838,310 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 300,394 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 755,533 | 2/12/2021 | |
5.0.1 | 50,129,091 | 4/6/2021 | |
5.0.0 | 536,554,537 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 1,169,739 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 976,518 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 707,299 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 546,890 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 259,458 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 386,845 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 445,984 | 5/18/2020 | |
5.0.0-preview.3.20215.2 | 336,404 | 4/23/2020 | |
5.0.0-preview.2.20160.3 | 451,081 | 4/2/2020 | |
5.0.0-preview.1.20120.4 | 237,043 | 3/16/2020 | |
3.1.32 | 22,558,605 | 12/13/2022 | |
3.1.31 | 3,087,023 | 11/8/2022 | |
3.1.30 | 3,565,293 | 10/11/2022 | |
3.1.29 | 2,823,316 | 9/13/2022 | |
3.1.28 | 6,521,878 | 8/9/2022 | |
3.1.27 | 2,533,295 | 7/12/2022 | |
3.1.26 | 2,180,451 | 6/14/2022 | |
3.1.25 | 4,011,429 | 5/10/2022 | |
3.1.24 | 13,256,162 | 4/11/2022 | |
3.1.23 | 5,984,498 | 3/8/2022 | |
3.1.22 | 24,145,551 | 12/14/2021 | |
3.1.21 | 13,147,481 | 11/7/2021 | |
3.1.20 | 6,960,073 | 10/11/2021 | |
3.1.19 | 6,700,523 | 9/14/2021 | |
3.1.18 | 65,281,741 | 8/10/2021 | |
3.1.17 | 9,119,389 | 7/13/2021 | |
3.1.16 | 16,150,897 | 6/8/2021 | |
3.1.15 | 10,734,420 | 5/11/2021 | |
3.1.14 | 22,116,701 | 4/6/2021 | |
3.1.13 | 18,976,308 | 3/9/2021 | |
3.1.12 | 14,802,600 | 2/9/2021 | |
3.1.11 | 23,458,347 | 1/12/2021 | |
3.1.10 | 36,332,109 | 11/9/2020 | |
3.1.9 | 85,472,533 | 10/13/2020 | |
3.1.8 | 252,086,912 | 9/8/2020 | |
3.1.7 | 47,313,667 | 8/11/2020 | |
3.1.6 | 53,266,407 | 7/14/2020 | |
3.1.5 | 57,109,422 | 6/9/2020 | |
3.1.4 | 69,697,496 | 5/12/2020 | |
3.1.3 | 126,246,128 | 3/24/2020 | |
3.1.2 | 89,789,001 | 2/18/2020 | |
3.1.1 | 52,666,713 | 1/14/2020 | |
3.1.0 | 290,923,799 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 1,953,864 | 11/13/2019 | |
3.1.0-preview2.19525.4 | 245,399 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 1,327,161 | 10/15/2019 | |
3.0.3 | 69,971,812 | 2/18/2020 | |
3.0.2 | 1,257,776 | 1/14/2020 | |
3.0.1 | 8,663,063 | 11/18/2019 | |
3.0.0 | 210,496,219 | 9/23/2019 | |
3.0.0-rc1.19456.10 | 197,024 | 9/16/2019 | |
3.0.0-preview9.19423.4 | 1,792,302 | 9/4/2019 | |
3.0.0-preview8.19405.4 | 655,299 | 8/13/2019 | |
3.0.0-preview7.19362.4 | 377,885 | 7/23/2019 | |
3.0.0-preview6.19304.6 | 926,959 | 6/12/2019 | |
3.0.0-preview5.19227.9 | 894,934 | 5/6/2019 | |
3.0.0-preview4.19216.2 | 102,477 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 458,884 | 3/6/2019 | |
3.0.0-preview.19074.2 | 262,763 | 1/29/2019 | |
3.0.0-preview.18572.1 | 205,889 | 12/4/2018 | |
2.2.0 | 736,002,455 | 12/3/2018 | |
2.2.0-preview3-35497 | 813,188 | 10/17/2018 | |
2.2.0-preview2-35157 | 677,889 | 9/12/2018 | |
2.2.0-preview1-35029 | 374,456 | 8/22/2018 | |
2.1.6 | 7,935,022 | 11/13/2018 | |
2.1.1 | 464,261,573 | 6/18/2018 | |
2.1.0 | 544,073,486 | 5/29/2018 | |
2.1.0-rc1-final | 764,226 | 5/6/2018 | |
2.1.0-preview2-final | 1,112,937 | 4/10/2018 | |
2.1.0-preview1-final | 2,209,332 | 2/26/2018 | |
2.0.0 | 650,822,845 | 8/11/2017 | |
2.0.0-preview2-final | 812,868 | 6/28/2017 | |
2.0.0-preview1-final | 823,676 | 5/10/2017 | |
1.1.1 | 80,192,693 | 5/9/2017 | |
1.1.0 | 55,641,952 | 11/16/2016 | |
1.1.0-preview1-final | 289,180 | 10/24/2016 | |
1.0.1 | 144,967,331 | 12/12/2016 | |
1.0.0 | 291,077,037 | 6/27/2016 | |
1.0.0-rc2-final | 2,346,024 | 5/16/2016 | |
1.0.0-rc1-final | 1,047,993 | 11/18/2015 |