System.ServiceModel.Channels.ISecurityCapabilities
namespace System.ServiceModel.Channels
{
public interface ISecurityCapabilities
{
ProtectionLevel SupportedRequestProtectionLevel { get; }
ProtectionLevel SupportedResponseProtectionLevel { get; }
bool SupportsClientAuthentication { get; }
bool SupportsClientWindowsIdentity { get; }
bool SupportsServerAuthentication { get; }
}
}