System\ServiceModel\Security\MessageSecurityProtocolFactory.cs (8)
243return ExtractMessageParts(action, this.ProtectionRequirements.OutgoingEncryptionParts, false);
245return ExtractMessageParts(action, (this.ActAsInitiator) ? this.ProtectionRequirements.OutgoingEncryptionParts : this.ProtectionRequirements.IncomingEncryptionParts, false);
259return ExtractMessageParts(action, this.ProtectionRequirements.OutgoingSignatureParts, true);
261return ExtractMessageParts(action, (this.ActAsInitiator) ? this.ProtectionRequirements.OutgoingSignatureParts : this.ProtectionRequirements.IncomingSignatureParts, true);
275return ExtractMessageParts(action, this.ProtectionRequirements.OutgoingEncryptionParts, false);
277return ExtractMessageParts(action, (this.ActAsInitiator) ? this.ProtectionRequirements.IncomingEncryptionParts : this.ProtectionRequirements.OutgoingEncryptionParts, false);
291return ExtractMessageParts(action, this.ProtectionRequirements.OutgoingSignatureParts, true);
293return ExtractMessageParts(action, (this.ActAsInitiator) ? this.ProtectionRequirements.IncomingSignatureParts : this.ProtectionRequirements.OutgoingSignatureParts, true);