Redpoint.Registry 2026.1101.267

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Redpoint.Registry --version 2026.1101.267
                    
NuGet\Install-Package Redpoint.Registry -Version 2026.1101.267
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Redpoint.Registry" Version="2026.1101.267" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Redpoint.Registry" Version="2026.1101.267" />
                    
Directory.Packages.props
<PackageReference Include="Redpoint.Registry" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Redpoint.Registry --version 2026.1101.267
                    
#r "nuget: Redpoint.Registry, 2026.1101.267"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Redpoint.Registry@2026.1101.267
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Redpoint.Registry&version=2026.1101.267
                    
Install as a Cake Addin
#tool nuget:?package=Redpoint.Registry&version=2026.1101.267
                    
Install as a Cake Tool

Redpoint.Registry

This library provides an easy way to access nested registry keys without having to individually open each component on the registry path.

Example

You can open an arbitrary registry key in read-only mode as shown below.

using (var stack = RegistryStack.OpenPath("HKCU:\SOFTWARE\MyCompany\SomeKey"))
{
    if (stack.Exists)
    {
        // Access the key in read-only mode via Key.
        var key = stack.Key;
    }
}

If you want to open the key in read-write mode, pass writable: true.

using (var stack = RegistryStack.OpenPath("HKCU:\SOFTWARE\MyCompany\SomeKey", writable: true))
{
    if (stack.Exists)
    {
        // Access the key in read-write mode via Key.
        var key = stack.Key;
    }
}

If you want to create the key if it does not exist, pass create: true. This infers writable: true.

using (var stack = RegistryStack.OpenPath("HKCU:\SOFTWARE\MyCompany\SomeKey", create: true))
{
    // Access the key in read-write mode via Key.
    var key = stack.Key;
}
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Redpoint.Registry:

Package Downloads
Redpoint.KubernetesManager

Implements a Kubernetes manager, which can provision and set up Kubernetes on Windows, macOS and Linux machines.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2026.1101.342 31 4/11/2026
2026.1101.283 25 4/11/2026
2026.1101.267 29 4/11/2026
2026.1101.238 26 4/11/2026
2026.1101.227 31 4/11/2026
2026.1100.676 61 4/10/2026
2026.1100.579 57 4/10/2026
2026.1099.978 70 4/9/2026
2026.1099.931 65 4/9/2026
2026.1099.890 62 4/9/2026
2026.1099.846 65 4/9/2026
2026.1099.813 58 4/9/2026
2026.1099.796 65 4/9/2026
2026.1098.939 81 4/8/2026
2026.1098.877 74 4/8/2026
2026.1092.252 94 4/2/2026
2026.1092.189 94 4/2/2026
2026.1083.1405 91 3/24/2026
2026.1083.1403 96 3/24/2026
2026.1078.345 98 3/19/2026
Loading failed