Determines whether two CicsServer instances represent the same CICS server.
Namespace:
IBM.CTGAssembly: IBM.CTG.Client (in IBM.CTG.Client.dll) Version: 1.0.0.0
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 ) |
Parameters
- cs1
- Type: IBM.CTG..::..CicsServer
A CicsServer.
- cs2
- Type: IBM.CTG..::..CicsServer
A CicsServer.
Return Value
trueTruetruetrue (True in Visual Basic) if cs1 and cs2 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.