Compares two IDs for logical equality.


Namespace: FileNet.Api.Util
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Public Function Equals( _ 
   ByVal otherId As Id _ 
) As Boolean
C#
public bool Equals(
   Id otherId
)
C++
public:
 bool Equals(
   Id otherId
) sealed 
J#
public bool Equals(
   Id otherId
)
JScript
public  function Equals(
   otherId : Id
) : bool

Parameters

otherId
The ID against which to compare this ID.

Return Value

True if otherId is an Id object and their GUIDs are logically equal; otherwise, returns False.

See Also