Determines whether two CicsServer instances do not represent the same CICS server.

Namespace:  IBM.CTG
Assembly:  IBM.CTG.Client (in IBM.CTG.Client.dll) Version: 9.0.0.2

Syntax

C#
public static bool operator !=(
	CicsServer cs1,
	CicsServer cs2
)
Visual Basic
Public Shared Operator <> ( _
	cs1 As CicsServer, _
	cs2 As CicsServer _
) As Boolean
Visual C++
public:
static bool operator !=(
	CicsServer cs1, 
	CicsServer cs2
)

Return Value

trueTruetruetrue (True in Visual Basic) if cs1 and cs2 do not have the same Name; otherwise, falseFalsefalsefalse (False in Visual Basic).

Remarks

Two CicsServer instances are considered equal if they have the same Name, ignoring case. For example, servers "cicsA" and "CICSA" are considered equal.

See Also