Address.Inequality Operator

Determines whether two specified instance of Address are not equal.

Namespace:  Microsoft.Owin.BuilderProperties
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Syntax

'Declaration
Public Shared Operator <> ( _
    left As Address, _
    right As Address _
) As Boolean
'Usage
Dim left As Address 
Dim right As Address 
Dim returnValue As Boolean 

returnValue = (left <> right)
public static bool operator !=(
    Address left,
    Address right
)
public:
static bool operator !=(
    Address left, 
    Address right
)
static let inline(<>)
        left:Address * 
        right:Address  : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.

Parameters

Return Value

Type: System.Boolean
true if left and right do not represent the same address; otherwise, false.

See Also

Reference

Address Structure

Microsoft.Owin.BuilderProperties Namespace