4 references to ScopedMessagePartSpecification
System.ServiceModel.Primitives (4)
System\ServiceModel\Security\ChannelProtectionRequirements.cs (4)
48
IncomingSignatureParts = new
ScopedMessagePartSpecification
(other.IncomingSignatureParts, newBodyProtectionLevel != ProtectionLevel.None);
49
IncomingEncryptionParts = new
ScopedMessagePartSpecification
(other.IncomingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign);
50
OutgoingSignatureParts = new
ScopedMessagePartSpecification
(other.OutgoingSignatureParts, newBodyProtectionLevel != ProtectionLevel.None);
51
_outgoingEncryptionParts = new
ScopedMessagePartSpecification
(other._outgoingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign);