File: System\ServiceModel\Channels\ChannelBindingUtility.cs | Web Access |
Project: src\src\System.ServiceModel.UnixDomainSocket\src\System.ServiceModel.UnixDomainSocket.csproj (System.ServiceModel.UnixDomainSocket) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Security.Authentication.ExtendedProtection; namespace System.ServiceModel.Channels { internal static class ChannelBindingUtility { private static readonly ExtendedProtectionPolicy s_disabledPolicy = new ExtendedProtectionPolicy(PolicyEnforcement.Never); public static ExtendedProtectionPolicy DefaultPolicy { get; } = s_disabledPolicy; } } |