EndPointHelperSequenceEquals Method  | 
 
            Compares two sequences of end points.
            
 
    Namespace: 
   MongoDB.Driver.Core.Misc
    Assembly:
   MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic static bool SequenceEquals(
	IEnumerable<EndPoint> a,
	IEnumerable<EndPoint> b
)
Public Shared Function SequenceEquals ( 
	a As IEnumerable(Of EndPoint),
	b As IEnumerable(Of EndPoint)
) As Boolean
static member SequenceEquals : 
        a : IEnumerable<EndPoint> * 
        b : IEnumerable<EndPoint> -> bool 
Parameters
- a
 - Type: System.Collections.GenericIEnumerableEndPoint
The first sequence of end points. - b
 - Type: System.Collections.GenericIEnumerableEndPoint
The second sequence of end points. 
Return Value
Type: 
BooleanTrue if both sequences contain the same end points in the same order, or if both sequences are null.
See Also