Address.Equality Operator
Determines whether two specified instances of Address are 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
- left
Type: Microsoft.Owin.BuilderProperties.Address
The first object to compare.
- right
Type: Microsoft.Owin.BuilderProperties.Address
The second objet to compare.
Return Value
Type: System.Boolean
true if left and right represent the same address; otherwise, false.