RegistryXmlRepository Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RegistryXmlRepository(RegistryKey) |
Creates a RegistryXmlRepository with keys stored in the given registry key. |
RegistryXmlRepository(RegistryKey, ILoggerFactory) |
Creates a RegistryXmlRepository with keys stored in the given registry key. |
RegistryXmlRepository(RegistryKey, IServiceProvider) |
Creates a RegistryXmlRepository with keys stored in the given registry key. |
RegistryXmlRepository(RegistryKey)
Creates a RegistryXmlRepository with keys stored in the given registry key.
public:
RegistryXmlRepository(Microsoft::Win32::RegistryKey ^ registryKey);
public RegistryXmlRepository (Microsoft.Win32.RegistryKey registryKey);
new Microsoft.AspNetCore.DataProtection.Repositories.RegistryXmlRepository : Microsoft.Win32.RegistryKey -> Microsoft.AspNetCore.DataProtection.Repositories.RegistryXmlRepository
Public Sub New (registryKey As RegistryKey)
Parameters
- registryKey
- RegistryKey
The registry key in which to persist key material.
Applies to
RegistryXmlRepository(RegistryKey, ILoggerFactory)
- Source:
- RegistryXmlRepository.cs
- Source:
- RegistryXmlRepository.cs
- Source:
- RegistryXmlRepository.cs
- Source:
- RegistryXmlRepository.cs
- Source:
- RegistryXmlRepository.cs
- Source:
- RegistryXmlRepository.cs
- Source:
- RegistryXmlRepository.cs
- Source:
- RegistryXmlRepository.cs
Creates a RegistryXmlRepository with keys stored in the given registry key.
public:
RegistryXmlRepository(Microsoft::Win32::RegistryKey ^ registryKey, Microsoft::Extensions::Logging::ILoggerFactory ^ loggerFactory);
public RegistryXmlRepository (Microsoft.Win32.RegistryKey registryKey, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory);
new Microsoft.AspNetCore.DataProtection.Repositories.RegistryXmlRepository : Microsoft.Win32.RegistryKey * Microsoft.Extensions.Logging.ILoggerFactory -> Microsoft.AspNetCore.DataProtection.Repositories.RegistryXmlRepository
Public Sub New (registryKey As RegistryKey, loggerFactory As ILoggerFactory)
Parameters
- registryKey
- RegistryKey
The registry key in which to persist key material.
- loggerFactory
- ILoggerFactory
The ILoggerFactory.
Applies to
RegistryXmlRepository(RegistryKey, IServiceProvider)
Creates a RegistryXmlRepository with keys stored in the given registry key.
public:
RegistryXmlRepository(Microsoft::Win32::RegistryKey ^ registryKey, IServiceProvider ^ services);
public RegistryXmlRepository (Microsoft.Win32.RegistryKey registryKey, IServiceProvider services);
new Microsoft.AspNetCore.DataProtection.Repositories.RegistryXmlRepository : Microsoft.Win32.RegistryKey * IServiceProvider -> Microsoft.AspNetCore.DataProtection.Repositories.RegistryXmlRepository
Public Sub New (registryKey As RegistryKey, services As IServiceProvider)
Parameters
- registryKey
- RegistryKey
The registry key in which to persist key material.
- services
- IServiceProvider
The IServiceProvider used to resolve services.