Determines whether two specified Id objects are not the same.

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

ToggleSyntax

Visual Basic (Declaration)
Public Shared Operator <> ( _
	i1 As Id, _
	i2 As Id _
) As Boolean
C#
public static bool operator !=(
	Id i1,
	Id i2
)
Visual C++
public:
static bool operator !=(
	Id^ i1, 
	Id^ i2
)
JavaScript
JavaScript does not support overloaded operators.

Parameters

i1
Type: FileNet.Api.Util..::.Id
An Id object.
i2
Type: FileNet.Api.Util..::.Id
An Id object.

Return Value

True if the two specified Id objects are not the same; otherwise, returns false.

ToggleSee Also