RasHandle.Equality Operator
From DotRas SDK
Determines whether two instances of RasHandle are equal.
Namespace: DotRas
Assembly: DotRas (in DotRas.dll) Version: 1.3.5166.33435 (1.3.0.0)
Syntax
| C# |
|---|
public static bool operator ==( RasHandle objA, RasHandle objB ) |
| Visual Basic |
|---|
Public Shared Operator = ( objA As RasHandle, objB As RasHandle ) As Boolean |
| Visual C++ |
|---|
public: static bool operator ==( RasHandle^ objA, RasHandle^ objB ) |
| F# |
|---|
static let inline (=) objA : RasHandle * objB : RasHandle : bool |
Parameters
- objA
- Type: DotRas..::..RasHandle
The first RasHandle to compare.
- objB
- Type: DotRas..::..RasHandle
The second RasHandle to compare.
Return Value
Type: Booleantrue if objA equals objB, otherwise false.
See Also