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