4 writes to IncomingEncryptionParts
System.ServiceModel.Primitives (4)
System\ServiceModel\Security\ChannelProtectionRequirements.cs (4)
21IncomingEncryptionParts = new ScopedMessagePartSpecification(); 36IncomingEncryptionParts = new ScopedMessagePartSpecification(other.IncomingEncryptionParts); 49IncomingEncryptionParts = new ScopedMessagePartSpecification(other.IncomingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign); 140result.IncomingEncryptionParts = new ScopedMessagePartSpecification(OutgoingEncryptionParts);
18 references to IncomingEncryptionParts
System.ServiceModel.Primitives (18)
System\ServiceModel\Channels\ReliableSessionBindingElement.cs (2)
229ScopedMessagePartSpecification encryptionPart = result.IncomingEncryptionParts; 250ScopedMessagePartSpecification encryptionPart = result.IncomingEncryptionParts;
System\ServiceModel\Security\ChannelProtectionRequirements.cs (15)
36IncomingEncryptionParts = new ScopedMessagePartSpecification(other.IncomingEncryptionParts); 49IncomingEncryptionParts = new ScopedMessagePartSpecification(other.IncomingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign); 85if (protectionRequirements.IncomingEncryptionParts != null) 87IncomingEncryptionParts.AddParts(protectionRequirements.IncomingEncryptionParts.ChannelParts); 103AddActionParts(IncomingEncryptionParts, protectionRequirements.IncomingEncryptionParts); 126IncomingEncryptionParts.MakeReadOnly(); 141result._outgoingEncryptionParts = new ScopedMessagePartSpecification(IncomingEncryptionParts); 183result.IncomingEncryptionParts.AddParts(UnionMessagePartSpecifications(contractRequirements.IncomingEncryptionParts), MessageHeaders.WildcardAction); 192contractRequirements.IncomingEncryptionParts.CopyTo(result.IncomingEncryptionParts); 302requirements.IncomingEncryptionParts.AddParts(encryptedParts, message.Action); 369requirements.IncomingEncryptionParts.AddParts(encryptedParts, fault.Action);
System\ServiceModel\Security\Tokens\SecureConversationSecurityTokenParameters.cs (1)
64_bootstrapProtectionRequirements.IncomingEncryptionParts.AddParts(new MessagePartSpecification(true));