RSASignaturePadding.Inequality Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether two specified RSASignaturePadding objects are unequal.
public:
static bool operator !=(System::Security::Cryptography::RSASignaturePadding ^ left, System::Security::Cryptography::RSASignaturePadding ^ right);
public static bool operator != (System.Security.Cryptography.RSASignaturePadding? left, System.Security.Cryptography.RSASignaturePadding? right);
public static bool operator != (System.Security.Cryptography.RSASignaturePadding left, System.Security.Cryptography.RSASignaturePadding right);
static member op_Inequality : System.Security.Cryptography.RSASignaturePadding * System.Security.Cryptography.RSASignaturePadding -> bool
Public Shared Operator != (left As RSASignaturePadding, right As RSASignaturePadding) As Boolean
Parameters
- left
- RSASignaturePadding
The first object to compare.
- right
- RSASignaturePadding
The second object to compare.
Returns
true
if left
and right
are unequal; otherwise, false
.
Remarks
The Inequality method defines the operation of the inequality operator for RSASignaturePadding values.
Two RSASignaturePadding values are unequal if their Mode property values are different.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.