4 references to ScopedMessagePartSpecification
System.ServiceModel (4)
System\ServiceModel\Security\ChannelProtectionRequirements.cs (4)
54
this.incomingSignatureParts = new
ScopedMessagePartSpecification
(other.incomingSignatureParts, newBodyProtectionLevel != ProtectionLevel.None);
55
this.incomingEncryptionParts = new
ScopedMessagePartSpecification
(other.incomingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign);
56
this.outgoingSignatureParts = new
ScopedMessagePartSpecification
(other.outgoingSignatureParts, newBodyProtectionLevel != ProtectionLevel.None);
57
this.outgoingEncryptionParts = new
ScopedMessagePartSpecification
(other.outgoingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign);