Returns a value indicating whether this instance represents the same CICS server as a specified CicsServer.

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

Syntax

C#
public bool Equals(
	CicsServer other
)
Visual Basic
Public Function Equals ( _
	other As CicsServer _
) As Boolean
Visual C++
public:
virtual bool Equals(
	CicsServer other
) sealed

Parameters

other
Type: IBM.CTG..::..CicsServer
A CicsServer to compare with this instance.

Return Value

trueTruetruetrue (True in Visual Basic) if this instance and other have the same Name; otherwise falseFalsefalsefalse (False in Visual Basic).

Implements

IEquatable<(Of <(<'T>)>)>..::..Equals(T)

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