1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00

Add comments

This commit is contained in:
Justin Baur 2025-04-04 12:04:10 -04:00
parent 190328c0cf
commit 56e82b1c15
No known key found for this signature in database
2 changed files with 4 additions and 1 deletions

View File

@ -28,6 +28,8 @@ internal sealed class PostConfigureX509ChainOptions : IPostConfigureOptions<X509
public void PostConfigure(string? name, X509ChainOptions options) public void PostConfigure(string? name, X509ChainOptions options)
{ {
// We don't register or request a named instance of these options,
// so don't customize it.
if (name != Options.DefaultName) if (name != Options.DefaultName)
{ {
return; return;

View File

@ -7,7 +7,8 @@ using System.Security.Cryptography.X509Certificates;
namespace Bit.Core.Platform.X509ChainCustomization; namespace Bit.Core.Platform.X509ChainCustomization;
/// <summary> /// <summary>
/// Allows for customization of /// Allows for customization of the <see cref="X509ChainPolicy"/> and access to a custom server certificate validator
/// if customization has been made.
/// </summary> /// </summary>
public sealed class X509ChainOptions public sealed class X509ChainOptions
{ {