AdgConnection.op_Equality Method, AKA Operator ==

Definition

Namespace: ASNA.DataGate.Client
Assembly: ASNA.QSys.DataGate.Client.dll

bool op_Equality(AdgConnection x, AdgConnection y)

Determines whether two AdgConnection instances are equal.

Remarks

This operator checks if the two AdgConnection instances are the same instance,

If neither of them is null, it calls the Equals method to determine if they are equal.

Returns true if the references being compared refer to the same object.

Otherwise, returns the value of the Equals method invoked on left, and passed right as a parameter.

bool op_Equality(AdgConnection x, AdgConnection y)

Parameters

Type Parameter name Description
AdgConnection x The first AdgConnection to compare.
AdgConnection y The second AdgConnection to compare.

Returns

Type Description
Boolean true if the two AdgConnection instances are equal; otherwise, false.

See Also

AdgConnection Class