16 instantiations of ScopedMessagePartSpecification
dotnet-svcutil-lib (16)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ChannelProtectionRequirements.cs (16)
23_incomingSignatureParts = new ScopedMessagePartSpecification(); 24_incomingEncryptionParts = new ScopedMessagePartSpecification(); 25_outgoingSignatureParts = new ScopedMessagePartSpecification(); 26_outgoingEncryptionParts = new ScopedMessagePartSpecification(); 42_incomingSignatureParts = new ScopedMessagePartSpecification(other._incomingSignatureParts); 43_incomingEncryptionParts = new ScopedMessagePartSpecification(other._incomingEncryptionParts); 44_outgoingSignatureParts = new ScopedMessagePartSpecification(other._outgoingSignatureParts); 45_outgoingEncryptionParts = new ScopedMessagePartSpecification(other._outgoingEncryptionParts); 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); 146result._incomingSignatureParts = new ScopedMessagePartSpecification(this.OutgoingSignatureParts); 147result._outgoingSignatureParts = new ScopedMessagePartSpecification(this.IncomingSignatureParts); 148result._incomingEncryptionParts = new ScopedMessagePartSpecification(this.OutgoingEncryptionParts); 149result._outgoingEncryptionParts = new ScopedMessagePartSpecification(this.IncomingEncryptionParts);
18 references to ScopedMessagePartSpecification
dotnet-svcutil-lib (18)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ReliableSessionBindingElement.cs (2)
256ScopedMessagePartSpecification signaturePart, 257ScopedMessagePartSpecification encryptionPart,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElementImporter.cs (1)
206private bool HasProtectionRequirements(ScopedMessagePartSpecification scopedParts)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ChannelProtectionRequirements.cs (11)
15private ScopedMessagePartSpecification _incomingSignatureParts; 16private ScopedMessagePartSpecification _incomingEncryptionParts; 17private ScopedMessagePartSpecification _outgoingSignatureParts; 18private ScopedMessagePartSpecification _outgoingEncryptionParts; 59public ScopedMessagePartSpecification IncomingSignatureParts 67public ScopedMessagePartSpecification IncomingEncryptionParts 75public ScopedMessagePartSpecification OutgoingSignatureParts 83public ScopedMessagePartSpecification OutgoingEncryptionParts 119private static void AddActionParts(ScopedMessagePartSpecification to, ScopedMessagePartSpecification from) 159private static MessagePartSpecification UnionMessagePartSpecifications(ScopedMessagePartSpecification actionParts)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ScopedMessagePartSpecification.cs (3)
48public ScopedMessagePartSpecification(ScopedMessagePartSpecification other) 66internal ScopedMessagePartSpecification(ScopedMessagePartSpecification other, bool newIncludeBody) 158internal void CopyTo(ScopedMessagePartSpecification target)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (1)
1364ScopedMessagePartSpecification scopedParts;