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