8 writes to ProtectionLevel
System.ServiceModel (8)
System\ServiceModel\Channels\SecurityBindingElementImporter.cs (2)
149part.ProtectionLevel = newProtectionLevel; 162part.ProtectionLevel = newProtectionLevel;
System\ServiceModel\Description\OperationGenerator.cs (1)
637wrapperPart.ProtectionLevel = protectionLevel;
System\ServiceModel\Description\TypeLoader.cs (2)
1391partDescription.ProtectionLevel = bodyAttr.ProtectionLevel; 1445headerDescription.ProtectionLevel = headerAttr.ProtectionLevel;
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
557part.ProtectionLevel = bodyPart.ProtectionLevel;
System\ServiceModel\Security\WSTrust.cs (2)
1262part.ProtectionLevel = System.Net.Security.ProtectionLevel.EncryptAndSign; 1267message.Body.ReturnValue.ProtectionLevel = System.Net.Security.ProtectionLevel.EncryptAndSign;
9 references to ProtectionLevel
System.ServiceModel (9)
System\ServiceModel\Channels\SecurityBindingElementImporter.cs (1)
135existingProtectionLevel = part.ProtectionLevel;
System\ServiceModel\Description\OperationGenerator.cs (3)
611protectionLevel = ProtectionLevelHelper.Max(protectionLevel, messageDescription.Body.ReturnValue.ProtectionLevel); 620protectionLevel = ProtectionLevelHelper.Max(protectionLevel, part.ProtectionLevel); 868CustomAttributeHelper.CreateOrOverridePropertyDeclaration(decl, MessageContractMemberAttribute.ProtectionLevelPropertyName, setting.ProtectionLevel);
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
557part.ProtectionLevel = bodyPart.ProtectionLevel;
System\ServiceModel\Dispatcher\SecurityValidationBehavior.cs (1)
470headerScopeDefaultProtectionLevel = header.ProtectionLevel;
System\ServiceModel\Security\ChannelProtectionRequirements.cs (3)
281bodyProtectionLevel = desc.HasProtectionLevel ? desc.ProtectionLevel : messageScopeDefaultProtectionLevel; 293ProtectionLevel partProtectionLevel = body.HasProtectionLevel ? body.ProtectionLevel : messageScopeDefaultProtectionLevel; 337ProtectionLevel p = header.HasProtectionLevel ? header.ProtectionLevel : defaultProtectionLevel;