15 writes to IsBodyIncluded
System.ServiceModel (15)
System\ServiceModel\Channels\SecurityBindingElement.cs (2)
841signedParts.IsBodyIncluded = true; 844encryptedParts.IsBodyIncluded = true;
System\ServiceModel\Security\ChannelProtectionRequirements.cs (5)
170result.IsBodyIncluded = true; 301signedParts.IsBodyIncluded = true; 303encryptedParts.IsBodyIncluded = true; 361signedParts.IsBodyIncluded = true; 364encryptedParts.IsBodyIncluded = true;
System\ServiceModel\Security\ScopedMessagePartSpecification.cs (3)
72this.channelParts.IsBodyIncluded = newIncludeBody; 74this.actionParts[action].IsBodyIncluded = newIncludeBody; 167target.ChannelParts.IsBodyIncluded = this.ChannelParts.IsBodyIncluded;
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 (1)
328parts.IsBodyIncluded = true;
19 references to IsBodyIncluded
System.ServiceModel (19)
System\ServiceModel\Channels\SecurityBindingElementImporter.cs (4)
275ProtectionLevel newProtectionLevel = GetProtectionLevel(messageSignedParts.IsBodyIncluded, messageEncryptedParts.IsBodyIncluded, message.Action); 369ProtectionLevel newProtectionLevel = GetProtectionLevel(messageSignedParts.IsBodyIncluded, messageEncryptedParts.IsBodyIncluded, fault.Action);
System\ServiceModel\Security\ChannelProtectionRequirements.cs (1)
168if (parts.IsBodyIncluded)
System\ServiceModel\Security\MessagePartSpecification.cs (2)
100this.isBodyIncluded |= specification.IsBodyIncluded; 229return !this.IsBodyIncluded;
System\ServiceModel\Security\ReceiveSecurityHeader.cs (1)
729if (this.RequiredEncryptionParts == null || !this.RequiredEncryptionParts.IsBodyIncluded)
System\ServiceModel\Security\ScopedMessagePartSpecification.cs (1)
167target.ChannelParts.IsBodyIncluded = this.ChannelParts.IsBodyIncluded;
System\ServiceModel\Security\SendSecurityHeader.cs (2)
753signBody = this.signatureParts.IsBodyIncluded; 763encryptBody = this.encryptionParts.IsBodyIncluded;
System\ServiceModel\Security\WSSecurityOneDotZeroReceiveSecurityHeader.cs (4)
185bool doSoapAttributeChecks = !signatureParts.IsBodyIncluded; 317bool expectBodyEncryption = encryptionParts.IsBodyIncluded || HasPendingDecryptionItem(); 372if (!bodySigned && signatureParts.IsBodyIncluded) 377if (!bodyEncrypted && encryptionParts.IsBodyIncluded)
System\ServiceModel\Security\WSSecurityPolicy.cs (4)
273if (parts.IsBodyIncluded) 301if (parts.IsBodyIncluded) 2732if (encryption.IsBodyIncluded != true) 2741if (signature.IsBodyIncluded != true)