RasHandle.Equals Method (RasHandle)

DotRas SDK

Collapse image Expand Image Copy image CopyHover image
Determines whether the specified RasHandle is equal to the current RasHandle.

Namespace: DotRas
Assembly: DotRas (in DotRas.dll) Version: 1.3.5166.33435 (1.3.0.0)

Syntax

C#
public bool Equals(
	RasHandle other
)
Visual Basic
Public Function Equals ( 
	other As RasHandle
) As Boolean
Visual C++
public:
virtual bool Equals(
	RasHandle^ other
) sealed
F#
abstract Equals : 
        other : RasHandle -> bool 
override Equals : 
        other : RasHandle -> bool 

Parameters

other
Type: DotRas..::..RasHandle
The RasHandle to compare with the current RasHandle.

Return Value

Type: Boolean
true if other is equal to the current object, otherwise false.

Implements

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

See Also