Learn how to evaluate and integrate the VNC SDK

We're here if you need help.

Connection

class Connection

Opaque type for a connection, identifying a Viewer connected to a Server.

For more information, see vnc_Connection in the C API documentation.

Implements

Method summary

Modifier and Type Method and Description
Boolean

Connection.Equals(Connection obj)

Performs equality comparison against another Connection.

Boolean

Connection.Equals(Object obj)

Performs equality comparison against another object.

static Boolean

Connection.op_Equality(Connection a, Connection b)

Equality comparison operator.

static Boolean

Connection.op_Inequality(Connection a, Connection b)

Inequality comparison operator.

Int32

Connection.GetHashCode()

Returns the hash code for this Connection.

Methods

Boolean Connection.Equals (Connection obj)

Performs equality comparison against another Connection.

Return type: Boolean - Returns a boolean indicating whether this Connection compares equal to the other Connection.

Boolean Connection.Equals (Object obj)

Performs equality comparison against another object.

Return type: Boolean - Returns a boolean indicating whether this Connection compares equal to the other object.

static Boolean Connection.op_Equality (Connection a, Connection b)

Equality comparison operator.

Return type: Boolean - Returns a boolean indicating whether this Connection compares equal to the other Connection.

static Boolean Connection.op_Inequality (Connection a, Connection b)

Inequality comparison operator.

Return type: Boolean - Returns a boolean indicating whether this Connection compares unequal to the other Connection.

Int32 Connection.GetHashCode ()

Returns the hash code for this Connection.

Return type: Int32 - A 32-bit signed integer hash code.

×