PathString.Equality Operator
Operator call through to Equals.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Public Shared Operator = ( _
left As PathString, _
right As PathString _
) As Boolean
'Usage
Dim left As PathString
Dim right As PathString
Dim returnValue As Boolean
returnValue = (left = right)
public static bool operator ==(
PathString left,
PathString right
)
public:
static bool operator ==(
PathString left,
PathString right
)
static let inline(=)
left:PathString *
right:PathString : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- left
Type: Microsoft.Owin.PathString
The left parameter.
- right
Type: Microsoft.Owin.PathString
The right parameter
Return Value
Type: System.Boolean
True if both PathString values are equal.