21 references to MessageProtectionOrder
dotnet-svcutil-lib (21)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElement.cs (3)
30internal const MessageProtectionOrder defaultMessageProtectionOrder = MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature; 530result.MessageProtectionOrder = MessageProtectionOrder.SignBeforeEncrypt;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElementImporter.cs (2)
26private MessageProtectionOrder _messageProtectionOrder; 100public MessageProtectionOrder MessageProtectionOrder
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SymmetricSecurityBindingElement.cs (2)
22private MessageProtectionOrder _messageProtectionOrder; 61public MessageProtectionOrder MessageProtectionOrder
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\MessageProtectionOrder.cs (4)
16internal static bool IsDefined(MessageProtectionOrder value) 18return value == MessageProtectionOrder.SignBeforeEncrypt 19|| value == MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature 20|| value == MessageProtectionOrder.EncryptBeforeSign;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (10)
468MessageProtectionOrder order; 530MessageProtectionOrder order; 1299MessageProtectionOrder protectionOrder; 1309if (protectionOrder == MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature 1403public virtual XmlElement CreateWsspEncryptBeforeSigningAssertion(MessageProtectionOrder protectionOrder) 1405if (protectionOrder == MessageProtectionOrder.EncryptBeforeSign) 1428public virtual bool TryImportMessageProtectionOrderAssertions(ICollection<XmlElement> assertions, out MessageProtectionOrder order) 1432order = MessageProtectionOrder.EncryptBeforeSign; 1436order = MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature; 1440order = MessageProtectionOrder.SignBeforeEncrypt;