4 references to ScopedMessagePartSpecification
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ChannelProtectionRequirements.cs (4)
53
_incomingSignatureParts = new
ScopedMessagePartSpecification
(other._incomingSignatureParts, newBodyProtectionLevel != ProtectionLevel.None);
54
_incomingEncryptionParts = new
ScopedMessagePartSpecification
(other._incomingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign);
55
_outgoingSignatureParts = new
ScopedMessagePartSpecification
(other._outgoingSignatureParts, newBodyProtectionLevel != ProtectionLevel.None);
56
_outgoingEncryptionParts = new
ScopedMessagePartSpecification
(other._outgoingEncryptionParts, newBodyProtectionLevel == ProtectionLevel.EncryptAndSign);