EndPointHelperEquals Method  | 
 
            Compares two end points.
            
 
    Namespace: 
   MongoDB.Driver.Core.Misc
    Assembly:
   MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic static bool Equals(
	EndPoint a,
	EndPoint b
)
Public Shared Function Equals ( 
	a As EndPoint,
	b As EndPoint
) As Boolean
static member Equals : 
        a : EndPoint * 
        b : EndPoint -> bool 
Parameters
- a
 - Type: System.NetEndPoint
The first end point. - b
 - Type: System.NetEndPoint
The second end point. 
Return Value
Type: 
BooleanTrue if both end points are equal, or if both are null.
See Also