<PackageReference Include="System.ServiceModel.Primitives" Version="8.1.0" />

System.ServiceModel.Channels.SecurityCapabilities

namespace System.ServiceModel.Channels { internal class SecurityCapabilities : ISecurityCapabilities { public ProtectionLevel SupportedRequestProtectionLevel { get; } public ProtectionLevel SupportedResponseProtectionLevel { get; } public bool SupportsClientAuthentication { get; } public bool SupportsClientWindowsIdentity { get; } public bool SupportsServerAuthentication { get; } public static SecurityCapabilities None { get; } public SecurityCapabilities(bool supportsClientAuth, bool supportsServerAuth, bool supportsClientWindowsIdentity, ProtectionLevel requestProtectionLevel, ProtectionLevel responseProtectionLevel); public static bool IsEqual(ISecurityCapabilities capabilities1, ISecurityCapabilities capabilities2); } }