13 references to MessageProtectionOrder
System.ServiceModel.Primitives (13)
System\ServiceModel\Security\MessageProtectionOrder.cs (4)
17internal static bool IsDefined(MessageProtectionOrder value) 19return value == MessageProtectionOrder.SignBeforeEncrypt 20|| value == MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature 21|| value == MessageProtectionOrder.EncryptBeforeSign;
System\ServiceModel\Security\ReceiveSecurityHeader.cs (9)
78private MessageProtectionOrder _protectionOrder; 323MessageProtectionOrder actualProtectionOrder = _protectionOrder; 325if (_protectionOrder == MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature) 838private MessageProtectionOrder _protectionOrder; 848get { return _enforce && _protectionOrder == MessageProtectionOrder.EncryptBeforeSign; } 870case MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature: 872case MessageProtectionOrder.SignBeforeEncrypt: 879case MessageProtectionOrder.EncryptBeforeSign: 904public void SetRequiredProtectionOrder(MessageProtectionOrder protectionOrder)