7 writes to ProtectionLevel
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\AsymmetricSecurityBindingElement.cs (2)
148part.ProtectionLevel = newProtectionLevel; 161part.ProtectionLevel = newProtectionLevel;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationGenerator.cs (1)
634wrapperPart.ProtectionLevel = protectionLevel;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (2)
1436partDescription.ProtectionLevel = bodyAttr.ProtectionLevel; 1483headerDescription.ProtectionLevel = headerAttr.ProtectionLevel;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrust.cs (2)
657part.ProtectionLevel = System.Net.Security.ProtectionLevel.EncryptAndSign; 662message.Body.ReturnValue.ProtectionLevel = System.Net.Security.ProtectionLevel.EncryptAndSign;
7 references to ProtectionLevel
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\AsymmetricSecurityBindingElement.cs (1)
134existingProtectionLevel = part.ProtectionLevel;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationGenerator.cs (3)
608protectionLevel = ProtectionLevelHelper.Max(protectionLevel, messageDescription.Body.ReturnValue.ProtectionLevel); 617protectionLevel = ProtectionLevelHelper.Max(protectionLevel, part.ProtectionLevel); 863CustomAttributeHelper.CreateOrOverridePropertyDeclaration(decl, MessageContractMemberAttribute.ProtectionLevelPropertyName, setting.ProtectionLevel);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ChannelProtectionRequirements.cs (3)
275bodyProtectionLevel = desc.HasProtectionLevel ? desc.ProtectionLevel : messageScopeDefaultProtectionLevel; 287ProtectionLevel partProtectionLevel = body.HasProtectionLevel ? body.ProtectionLevel : messageScopeDefaultProtectionLevel; 331ProtectionLevel p = header.HasProtectionLevel ? header.ProtectionLevel : defaultProtectionLevel;