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
/// <param name="alwaysAddTrailingSlashToBasePath">Should a trailing slash be added to the base path. See AlwaysAddTrailingSlashToBasePath property for details </param>
29
31
/// <param name="insecureConnection">(Dangerous!) Ignore certificate validation. This implies self-signed certificates are accepted.</param>
/// <param name="alwaysAddTrailingSlashToBasePath">Should a trailing slash be added to the base path. See AlwaysAddTrailingSlashToBasePath property for details </param>
72
79
/// <param name="insecureConnection">(Dangerous!) Ignore certificate validation. This implies self-signed certificates are accepted.</param>
/// Indicates whether we should disregard the certificate validation (for examples, servers behind Internet aren't likely to have a strong certs but we can't afford to use HTTP either)
163
182
/// Previously, the certificate behavior can be set globally, but subsequently removed in .NET Core and onwards due to security reasons.
164
-
/// We need to set the behavior to each HttpClient on a case-by-case basis. As such, this option is provided as a resolution.
165
-
/// If it is true, a custom PostProcessHttpClientHandlerAction will be injected to the VaultClientSettings to accept any server certificate.
183
+
/// We need to set the behavior to each HttpClient on a case-by-case basis. As such, this option is provided as a resolution.
184
+
/// If it is true, a custom PostProcessHttpClientHandlerAction will be injected to the VaultClientSettings to accept any server certificate.
166
185
/// Default value: false. Hashicorp also recommend using a proper CA to setup Vault access due to security concerns.
167
186
/// </summary>
168
187
publicboolAcceptInsecureConnection{get;}
@@ -178,7 +197,7 @@ public VaultOptions(
178
197
/// </summary>
179
198
/// <remarks>
180
199
/// The action will be invoked after the VaultSharp provider applies the AcceptInsecureConnection and ServerCertificateCustomValidationCallback
181
-
/// customizations, if you enabled them. Be aware that if you overwrite the HttpMessageHandler's ServerCertificateCustomValidationCallback
200
+
/// customizations, if you enabled them. Be aware that if you overwrite the HttpMessageHandler's ServerCertificateCustomValidationCallback
182
201
/// in your action-handler method, you will cancel out the effect of enabling the AcceptInsecureConnection and/or
0 commit comments