2 types derived from ProtectedConfigurationProvider
System.Configuration.ConfigurationManager (2)
System\Configuration\DpapiProtectedConfigurationProvider.cs (1)
13
public sealed class DpapiProtectedConfigurationProvider :
ProtectedConfigurationProvider
System\Configuration\RsaProtectedConfigurationProvider.cs (1)
16
public sealed class RsaProtectedConfigurationProvider :
ProtectedConfigurationProvider
27 references to ProtectedConfigurationProvider
System.Configuration (1)
System.Configuration.cs (1)
82
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Configuration.
ProtectedConfigurationProvider
))]
System.Configuration.ConfigurationManager (26)
System\Configuration\BaseConfigurationRecord.cs (3)
1595
internal
ProtectedConfigurationProvider
GetProtectionProviderFromName(string providerName, bool throwIfNotFound)
3550
ProtectedConfigurationProvider
protectionProvider, ProtectedConfigurationSection protectedConfig)
3564
ProtectedConfigurationProvider
protectionProvider)
System\Configuration\Internal\DelegatingConfigHost.cs (2)
190
public virtual string DecryptSection(string encryptedXml,
ProtectedConfigurationProvider
protectionProvider,
196
public virtual string EncryptSection(string clearTextXml,
ProtectedConfigurationProvider
protectionProvider,
System\Configuration\Internal\IInternalConfigHost.cs (2)
90
string DecryptSection(string encryptedXml,
ProtectedConfigurationProvider
protectionProvider,
93
string EncryptSection(string clearTextXml,
ProtectedConfigurationProvider
protectionProvider,
System\Configuration\Internal\InternalConfigHost.cs (2)
163
string IInternalConfigHost.DecryptSection(string encryptedXml,
ProtectedConfigurationProvider
protectionProvider,
169
string IInternalConfigHost.EncryptSection(string clearTextXml,
ProtectedConfigurationProvider
protectionProvider,
System\Configuration\ProtectedConfigurationProviderCollection.cs (4)
10
public new
ProtectedConfigurationProvider
this[string name] => (
ProtectedConfigurationProvider
)base[name];
19
if (!(provider is
ProtectedConfigurationProvider
))
23
typeof(
ProtectedConfigurationProvider
).ToString()), nameof(provider));
System\Configuration\ProtectedConfigurationSection.cs (8)
46
internal
ProtectedConfigurationProvider
GetProviderFromName(string providerName)
64
private static
ProtectedConfigurationProvider
CreateAndInitializeProviderWithAssert(Type t, ProviderSettings pn)
66
ProtectedConfigurationProvider
provider =
67
(
ProtectedConfigurationProvider
)TypeUtil.CreateInstance(t);
77
private static
ProtectedConfigurationProvider
InstantiateProvider(ProviderSettings pn)
80
if (!typeof(
ProtectedConfigurationProvider
).IsAssignableFrom(t))
86
internal static string DecryptSection(string encryptedXml,
ProtectedConfigurationProvider
provider)
104
internal static string EncryptSection(string clearXml,
ProtectedConfigurationProvider
provider)
System\Configuration\SectionInformation.cs (3)
44
private
ProtectedConfigurationProvider
_protectionProvider;
300
public
ProtectedConfigurationProvider
ProtectionProvider
601
ProtectedConfigurationProvider
protectedConfigurationProvider;
System\Configuration\SectionInput.cs (2)
19
private
ProtectedConfigurationProvider
_protectionProvider;
42
internal
ProtectedConfigurationProvider
ProtectionProvider