9 references to SignBeforeEncryptAndEncryptSignature
System.ServiceModel (9)
System\ServiceModel\Channels\SecurityBindingElement.cs (1)
31
internal const MessageProtectionOrder defaultMessageProtectionOrder = MessageProtectionOrder.
SignBeforeEncryptAndEncryptSignature
;
System\ServiceModel\Configuration\Properties.cs (1)
3002
properties.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)
316
securityHeader.EncryptPrimarySignature = factory.MessageProtectionOrder == MessageProtectionOrder.
SignBeforeEncryptAndEncryptSignature
;
System\ServiceModel\Security\ReceiveSecurityHeader.cs (3)
339
if ((this.protectionOrder == MessageProtectionOrder.
SignBeforeEncryptAndEncryptSignature
) &&
727
if (this.protectionOrder == MessageProtectionOrder.
SignBeforeEncryptAndEncryptSignature
)
1893
case MessageProtectionOrder.
SignBeforeEncryptAndEncryptSignature
:
System\ServiceModel\Security\WSSecurityPolicy.cs (2)
1309
if (protectionOrder == MessageProtectionOrder.
SignBeforeEncryptAndEncryptSignature
1436
order = MessageProtectionOrder.
SignBeforeEncryptAndEncryptSignature
;