Compares two IDs for logical equality.

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

ToggleSyntax

Visual Basic (Declaration)
Public Function Equals ( _
	otherId As Id _
) As Boolean
C#
public bool Equals(
	Id otherId
)
Visual C++
public:
bool Equals(
	Id^ otherId
)
JavaScript
function equals(otherId);

Parameters

otherId
Type: FileNet.Api.Util..::.Id
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.

ToggleSee Also