1 implementation of SupportedRequestProtectionLevel
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\SecurityCapabilities.cs (1)
27
public ProtectionLevel
SupportedRequestProtectionLevel
{ get { return _requestProtectionLevel; } }
6 references to SupportedRequestProtectionLevel
System.ServiceModel.Primitives (6)
System\ServiceModel\Channels\SecurityBindingElement.cs (2)
458
ProtectionLevel requestProtectionLevel = ProtectionLevelHelper.Max(thisSecurityCapability.
SupportedRequestProtectionLevel
, lowerSecurityCapability.
SupportedRequestProtectionLevel
);
System\ServiceModel\Channels\SecurityCapabilities.cs (2)
50
if (capabilities1.
SupportedRequestProtectionLevel
!= capabilities2.
SupportedRequestProtectionLevel
)
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);