You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: remove deprecated secret store functionality (#426)
* chore: remove deprecated secret store functionality
* pr-fix: correct grouped secret store unit tests
* pr-fix: add additional test assertions on get interface provider
Copy file name to clipboardexpand all lines: src/Arcus.Security.Core/SecretStoreBuilder.cs
+4-14
Original file line number
Diff line number
Diff line change
@@ -38,10 +38,6 @@ public SecretStoreBuilder(IServiceCollection services)
38
38
/// <summary>
39
39
/// Gets the available secret sources currently registered to be included in the resulting root secret store.
40
40
/// </summary>
41
-
/// <remarks>
42
-
/// The series of secret stores is directly publicly available including the operations so future (consumer) extensions can easily low-level manipulate this series during build-up.
43
-
/// Though, for almost all use-cases, the <see cref="AddProvider(ISecretProvider,Func{string,string})"/> and the <see cref="AddProvider(Func{IServiceProvider,ISecretProvider},Func{string,string})"/> should be sufficient.
/// Initializes a new instance of the <see cref="SecretStoreSource"/> class.
65
39
/// </summary>
@@ -78,10 +52,6 @@ public SecretStoreSource(ISecretProvider secretProvider, SecretProviderOptions o
78
52
/// Gets the provider for this secret store.
79
53
/// </summary>
80
54
/// <exception cref="InvalidOperationException">Thrown when the <see cref="EnsureSecretProviderCreated"/> was not yet called after creating a lazy secret provider source.</exception>
81
-
/// <remarks>
82
-
/// When this secret provider source registration was initialized with the <see cref="SecretStoreSource(Func{IServiceProvider,ISecretProvider},Func{string,string})"/>
83
-
/// than the <see cref="EnsureSecretProviderCreated"/> method has to be called first to initialized the lazy created <see cref="ISecretProvider"/>.
84
-
/// </remarks>
85
55
publicISecretProviderSecretProvider
86
56
{
87
57
get
@@ -100,28 +70,16 @@ public ISecretProvider SecretProvider
100
70
/// <summary>
101
71
/// Gets the versioned provider for this secret provider registration, if the <see cref="SecretProvider"/> is a <see cref="IVersionedSecretProvider"/> implementation.
102
72
/// </summary>
103
-
/// <remarks>
104
-
/// When this secret provider source registration was initialized with the <see cref="SecretStoreSource(Func{IServiceProvider,ISecretProvider},Func{string,string})"/>
105
-
/// than the <see cref="EnsureSecretProviderCreated"/> method has to be called first to initialized the lazy created <see cref="IVersionedSecretProvider"/>.
/// Gets the synchronous variant of this secret provider registration, if the <see cref="SecretProvider"/> is a <see cref="ISyncSecretProvider"/> implementation.
111
77
/// </summary>
112
-
/// <remarks>
113
-
/// When this secret provider source registration was initialized with the <see cref="SecretStoreSource(Func{IServiceProvider,ISecretProvider},Func{string,string})"/>
114
-
/// than the <see cref="EnsureSecretProviderCreated"/> method has to be called first to initialized the lazy created <see cref="ISyncSecretProvider"/>.
/// Gets the cached provider for this secret provider registration, if the <see cref="SecretProvider"/> is a <see cref="ICachedSecretProvider"/> implementation.
120
82
/// </summary>
121
-
/// <remarks>
122
-
/// When this secret provider source registration was initialized with the <see cref="SecretStoreSource(Func{IServiceProvider,ISecretProvider},Func{string,string})"/>
123
-
/// than the <see cref="EnsureSecretProviderCreated"/> method has to be called first to initialized the lazy created <see cref="ICachedSecretProvider"/>.
0 commit comments