MongoServerAddressInequality Operator  | 
 
            Compares two server addresses.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
Syntaxpublic static bool operator !=(
	MongoServerAddress lhs,
	MongoServerAddress rhs
)
Public Shared Operator <> ( 
	lhs As MongoServerAddress,
	rhs As MongoServerAddress
) As Boolean
static let inline (<>)
        lhs : MongoServerAddress * 
        rhs : MongoServerAddress  : boolParameters
- lhs
 - Type: MongoDB.DriverMongoServerAddress
The first address. - rhs
 - Type: MongoDB.DriverMongoServerAddress
The other address. 
Return Value
Type: 
BooleanTrue if the two addresses are not equal (or one is null and the other is not).
See Also