1 implementation of SupportedRequestProtectionLevel
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityCapabilities.cs (1)
27
public ProtectionLevel
SupportedRequestProtectionLevel
{ get { return requestProtectionLevel; } }
8 references to SupportedRequestProtectionLevel
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CompositeDuplexBindingElement.cs (1)
102
false, lowerCapabilities.SupportsClientWindowsIdentity, lowerCapabilities.
SupportedRequestProtectionLevel
,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElement.cs (3)
415
ProtectionLevel supportedRequestProtectionLevel = this.GetIndividualProperty<ISecurityCapabilities>().
SupportedRequestProtectionLevel
;
496
ProtectionLevel requestProtectionLevel = ProtectionLevelHelper.Max(thisSecurityCapability.
SupportedRequestProtectionLevel
, lowerSecurityCapability.
SupportedRequestProtectionLevel
);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityCapabilities.cs (2)
50
if (capabilities1.
SupportedRequestProtectionLevel
!= capabilities2.
SupportedRequestProtectionLevel
)
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);