10 references to EncryptionAlgorithm
System.Messaging (10)
System\Messaging\DefaultPropertiesToSend.cs (2)
168[DefaultValueAttribute(EncryptionAlgorithm.Rc2), MessagingDescription(Res.MsgEncryptionAlgorithm)] 169public EncryptionAlgorithm EncryptionAlgorithm
System\Messaging\Message.cs (4)
993public EncryptionAlgorithm EncryptionAlgorithm 1001return EncryptionAlgorithm.Rc2; 1006return (EncryptionAlgorithm)properties.GetUI4(NativeMethods.MESSAGE_PROPID_ENCRYPTION_ALG); 1011throw new InvalidEnumArgumentException("value", (int)value, typeof(EncryptionAlgorithm));
System\Messaging\ValidationUtility.cs (4)
22public static bool ValidateEncryptionAlgorithm(EncryptionAlgorithm value) 27return (value == EncryptionAlgorithm.None) || 28(value == EncryptionAlgorithm.Rc2) || 29(value == EncryptionAlgorithm.Rc4);