| File: CertificateTypes.cs | Web Access |
| Project: src\aspnetcore\src\Security\Authentication\Certificate\src\Microsoft.AspNetCore.Authentication.Certificate.csproj (Microsoft.AspNetCore.Authentication.Certificate) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Authentication.Certificate; /// <summary> /// Enum representing certificate types. /// </summary> [Flags] public enum CertificateTypes { /// <summary> /// Chained certificates. /// </summary> Chained = 1, /// <summary> /// SelfSigned certificates. /// </summary> SelfSigned = 2, /// <summary> /// All certificates. /// </summary> All = Chained | SelfSigned }