RSAEncryptionPadding.Inequality Operator

Definition

Indicates whether two specified RSAEncryptionPadding objects are unequal.

public:
 static bool operator !=(System::Security::Cryptography::RSAEncryptionPadding ^ left, System::Security::Cryptography::RSAEncryptionPadding ^ right);
public static bool operator != (System.Security.Cryptography.RSAEncryptionPadding? left, System.Security.Cryptography.RSAEncryptionPadding? right);
public static bool operator != (System.Security.Cryptography.RSAEncryptionPadding left, System.Security.Cryptography.RSAEncryptionPadding right);
static member op_Inequality : System.Security.Cryptography.RSAEncryptionPadding * System.Security.Cryptography.RSAEncryptionPadding -> bool
Public Shared Operator != (left As RSAEncryptionPadding, right As RSAEncryptionPadding) As Boolean

Parameters

left
RSAEncryptionPadding

The first object to compare.

right
RSAEncryptionPadding

The second object to compare.

Returns

true if left and right are not equal; otherwise, false.

Remarks

Two RSAEncryptionPadding objects are not equal if their Mode and OaepHashAlgorithm property values are not equal.

Applies to