5 writes to ProtectionLevel
System.ServiceModel.Primitives (5)
System\ServiceModel\Description\TypeLoader.cs (2)
1481partDescription.ProtectionLevel = bodyAttr.ProtectionLevel; 1536headerDescription.ProtectionLevel = headerAttr.ProtectionLevel;
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
624part.ProtectionLevel = bodyPart.ProtectionLevel;
System\ServiceModel\Security\WSTrust.cs (2)
1190part.ProtectionLevel = System.Net.Security.ProtectionLevel.EncryptAndSign; 1195message.Body.ReturnValue.ProtectionLevel = System.Net.Security.ProtectionLevel.EncryptAndSign;
4 references to ProtectionLevel
System.ServiceModel.Primitives (4)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
624part.ProtectionLevel = bodyPart.ProtectionLevel;
System\ServiceModel\Security\ChannelProtectionRequirements.cs (3)
269bodyProtectionLevel = desc.HasProtectionLevel ? desc.ProtectionLevel : messageScopeDefaultProtectionLevel; 281ProtectionLevel partProtectionLevel = body.HasProtectionLevel ? body.ProtectionLevel : messageScopeDefaultProtectionLevel; 329ProtectionLevel p = header.HasProtectionLevel ? header.ProtectionLevel : defaultProtectionLevel;