System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy
namespace System.Security.Authentication.ExtendedProtection
{
public class ExtendedProtectionPolicy : ISerializable
{
public ChannelBinding CustomChannelBinding { get; }
public ServiceNameCollection CustomServiceNames { get; }
public static bool OSSupportsExtendedProtection { get; }
public PolicyEnforcement PolicyEnforcement { get; }
public ProtectionScenario ProtectionScenario { get; }
protected ExtendedProtectionPolicy(SerializationInfo info, StreamingContext context);
public ExtendedProtectionPolicy(PolicyEnforcement policyEnforcement);
public ExtendedProtectionPolicy(PolicyEnforcement policyEnforcement, ChannelBinding customChannelBinding);
public ExtendedProtectionPolicy(PolicyEnforcement policyEnforcement, ProtectionScenario protectionScenario, ICollection customServiceNames);
public ExtendedProtectionPolicy(PolicyEnforcement policyEnforcement, ProtectionScenario protectionScenario, ServiceNameCollection customServiceNames);
}
}