1 implementation of SupportedResponseProtectionLevel
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\SecurityCapabilities.cs (1)
28public ProtectionLevel SupportedResponseProtectionLevel { get { return _responseProtectionLevel; } }
6 references to SupportedResponseProtectionLevel
System.ServiceModel.Primitives (6)
System\ServiceModel\Channels\SecurityBindingElement.cs (2)
459ProtectionLevel responseProtectionLevel = ProtectionLevelHelper.Max(thisSecurityCapability.SupportedResponseProtectionLevel, lowerSecurityCapability.SupportedResponseProtectionLevel);
System\ServiceModel\Channels\SecurityCapabilities.cs (2)
55if (capabilities1.SupportedResponseProtectionLevel != capabilities2.SupportedResponseProtectionLevel)
System\ServiceModel\Security\ChannelProtectionRequirements.cs (2)
148return CreateFromContract(contract, bindingElement.SupportedRequestProtectionLevel, bindingElement.SupportedResponseProtectionLevel, isForClient); 177ChannelProtectionRequirements contractRequirements = CreateFromContract(contract, bindingElement.SupportedRequestProtectionLevel, bindingElement.SupportedResponseProtectionLevel, isForClient);