17 references to ChannelParts
System.ServiceModel (17)
System\ServiceModel\Security\ChannelProtectionRequirements.cs (4)
103this.incomingSignatureParts.AddParts(protectionRequirements.incomingSignatureParts.ChannelParts); 105this.incomingEncryptionParts.AddParts(protectionRequirements.incomingEncryptionParts.ChannelParts); 107this.outgoingSignatureParts.AddParts(protectionRequirements.outgoingSignatureParts.ChannelParts); 109this.outgoingEncryptionParts.AddParts(protectionRequirements.outgoingEncryptionParts.ChannelParts);
System\ServiceModel\Security\IssuanceTokenProviderBase.cs (1)
288MessagePartSpecification channelEncryptionParts = this.ApplicationProtectionRequirements.OutgoingEncryptionParts.ChannelParts;
System\ServiceModel\Security\ScopedMessagePartSpecification.cs (4)
167target.ChannelParts.IsBodyIncluded = this.ChannelParts.IsBodyIncluded; 168foreach (XmlQualifiedName headerType in ChannelParts.HeaderTypes) 172target.ChannelParts.HeaderTypes.Add(headerType);
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (2)
1106soapBindingFactory.ProtectionRequirements.IncomingSignatureParts.ChannelParts.IsBodyIncluded = true; 1107soapBindingFactory.ProtectionRequirements.OutgoingSignatureParts.ChannelParts.IsBodyIncluded = true;
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (2)
388soapBindingFactory.ProtectionRequirements.IncomingSignatureParts.ChannelParts.IsBodyIncluded = true; 389soapBindingFactory.ProtectionRequirements.OutgoingSignatureParts.ChannelParts.IsBodyIncluded = true;
System\ServiceModel\Security\WSSecurityPolicy.cs (4)
2679encryption.Union(bootstrapProtection.IncomingEncryptionParts.ChannelParts); 2680encryption.Union(bootstrapProtection.OutgoingEncryptionParts.ChannelParts); 2683signature.Union(bootstrapProtection.IncomingSignatureParts.ChannelParts); 2684signature.Union(bootstrapProtection.OutgoingSignatureParts.ChannelParts);