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