Computer.Key.Equality Operator

Definition

Determines whether the specified object key is equal to the second object key.

Overloads

Equality(Computer+Key, Computer+Key)

Determines whether the specified object key is equal to the second object key.

Equality(Computer+Key, Object)

Determines whether the specified object key is equal to the object.

Equality(Object, Computer+Key)

Determines whether the specified object is equal to the object key.

Equality(Computer+Key, Computer+Key)

Determines whether the specified object key is equal to the second object key.

public:
 static bool operator ==(Microsoft::SqlServer::Management::Utility::Computer::Key ^ leftOperand, Microsoft::SqlServer::Management::Utility::Computer::Key ^ rightOperand);
public static bool operator == (Microsoft.SqlServer.Management.Utility.Computer.Key leftOperand, Microsoft.SqlServer.Management.Utility.Computer.Key rightOperand);
static member ( = ) : Microsoft.SqlServer.Management.Utility.Computer.Key * Microsoft.SqlServer.Management.Utility.Computer.Key -> bool
Public Shared Operator == (leftOperand As Computer.Key, rightOperand As Computer.Key) As Boolean

Parameters

leftOperand
Computer.Key

A Computer.Key to compare for equality.

rightOperand
Computer.Key

A second Computer.Key to compare for equality.

Returns

A Boolean which is true if the two operands are equal, otherwise false.

Applies to

Equality(Computer+Key, Object)

Determines whether the specified object key is equal to the object.

public:
 static bool operator ==(Microsoft::SqlServer::Management::Utility::Computer::Key ^ leftOperand, System::Object ^ obj);
public static bool operator == (Microsoft.SqlServer.Management.Utility.Computer.Key leftOperand, object obj);
static member ( = ) : Microsoft.SqlServer.Management.Utility.Computer.Key * obj -> bool
Public Shared Operator == (leftOperand As Computer.Key, obj As Object) As Boolean

Parameters

leftOperand
Computer.Key

A Computer.Key to compare for equality.

obj
Object

A Object to compare for equality.

Returns

A Boolean which is true if the two operands are equal, otherwise false.

Applies to

Equality(Object, Computer+Key)

Determines whether the specified object is equal to the object key.

public:
 static bool operator ==(System::Object ^ obj, Microsoft::SqlServer::Management::Utility::Computer::Key ^ rightOperand);
public static bool operator == (object obj, Microsoft.SqlServer.Management.Utility.Computer.Key rightOperand);
static member ( = ) : obj * Microsoft.SqlServer.Management.Utility.Computer.Key -> bool
Public Shared Operator == (obj As Object, rightOperand As Computer.Key) As Boolean

Parameters

obj
Object

A Object to compare for equality.

rightOperand
Computer.Key

A Computer.Key to compare for equality.

Returns

A Boolean which is true if the two operands are equal, otherwise false.

Applies to