Click or drag to resize

OidExtensionsEquals2 Method

Compares two Oid objects for equality.

Namespace:  SysadminsLV.PKI.Utils.CLRExtensions
Assembly:  SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax
public static bool Equals2(
	this Oid oid,
	Oid other
)

Parameters

oid
Type: System.Security.CryptographyOid
Source OID
other
Type: System.Security.CryptographyOid
An Oid object to compare to the current object.

Return Value

Type: Boolean
True if Value members of two OID instances are equal. This method is case-insensitive.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Oid. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
Original Oid class do not override Equals(Object) method.
See Also