1 implementation of SupportedResponseProtectionLevel
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityCapabilities.cs (1)
28
public ProtectionLevel
SupportedResponseProtectionLevel
{ get { return responseProtectionLevel; } }
7 references to SupportedResponseProtectionLevel
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElement.cs (3)
416
ProtectionLevel supportedResponseProtectionLevel = this.GetIndividualProperty<ISecurityCapabilities>().
SupportedResponseProtectionLevel
;
497
ProtectionLevel responseProtectionLevel = ProtectionLevelHelper.Max(thisSecurityCapability.
SupportedResponseProtectionLevel
, lowerSecurityCapability.
SupportedResponseProtectionLevel
);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityCapabilities.cs (2)
55
if (capabilities1.
SupportedResponseProtectionLevel
!= capabilities2.
SupportedResponseProtectionLevel
)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ChannelProtectionRequirements.cs (2)
156
return CreateFromContract(contract, bindingElement.SupportedRequestProtectionLevel, bindingElement.
SupportedResponseProtectionLevel
, isForClient);
185
ChannelProtectionRequirements contractRequirements = CreateFromContract(contract, bindingElement.SupportedRequestProtectionLevel, bindingElement.
SupportedResponseProtectionLevel
, isForClient);