9 references to SignBeforeEncryptAndEncryptSignature
System.ServiceModel (9)
System\ServiceModel\Channels\SecurityBindingElement.cs (1)
31internal const MessageProtectionOrder defaultMessageProtectionOrder = MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature;
System\ServiceModel\Configuration\Properties.cs (1)
3002properties.Add(new ConfigurationProperty("messageProtectionOrder", typeof(System.ServiceModel.Security.MessageProtectionOrder), System.ServiceModel.Security.MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.Security.MessageProtectionOrderHelper)), System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\Security\MessageProtectionOrder.cs (1)
18|| value == MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature
System\ServiceModel\Security\MessageSecurityProtocol.cs (1)
316securityHeader.EncryptPrimarySignature = factory.MessageProtectionOrder == MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature;
System\ServiceModel\Security\ReceiveSecurityHeader.cs (3)
339if ((this.protectionOrder == MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature) && 727if (this.protectionOrder == MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature) 1893case MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature:
System\ServiceModel\Security\WSSecurityPolicy.cs (2)
1309if (protectionOrder == MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature 1436order = MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature;