PathString.Equals Method
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Overload List
Name | Description | |
---|---|---|
Equals(Object) | Compares this PathString value to another value. The default comparison is StringComparison.OrdinalIgnoreCase.(Overrides ValueType.Equals(Object).) |
|
Equals(PathString) | Compares this PathString value to another value. The default comparison is StringComparison.OrdinalIgnoreCase. |
|
Equals(PathString, StringComparison) | Compares this PathString value to another value using a specific StringComparison type |
See Also
PathString Structure
Microsoft.Owin Namespace
Return to top
PathString.Equals Method (Object)
Compares this PathString value to another value. The default comparison is StringComparison.OrdinalIgnoreCase.
Syntax
public override bool Equals(
object obj
)
public:
virtual bool Equals(
Object^ obj
) override
override Equals :
obj:Object -> bool
Public Overrides Function Equals (
obj As Object
) As Boolean
Parameters
obj
Type: System.ObjectThe second PathString for comparison.
Return Value
Type: System.Boolean
True if both PathString values are equal
Return to top
PathString.Equals Method (PathString)
Compares this PathString value to another value. The default comparison is StringComparison.OrdinalIgnoreCase.
Syntax
public bool Equals(
PathString other
)
public:
virtual bool Equals(
PathString other
) sealed
abstract Equals :
other:PathString -> bool
override Equals :
other:PathString -> bool
Public Function Equals (
other As PathString
) As Boolean
Parameters
other
Type: Microsoft.Owin.PathStringThe second PathString for comparison.
Return Value
Type: System.Boolean
True if both PathString values are equal
Implements
Return to top
PathString.Equals Method (PathString, StringComparison)
Compares this PathString value to another value using a specific StringComparison type
Syntax
public bool Equals(
PathString other,
StringComparison comparisonType
)
public:
bool Equals(
PathString other,
StringComparison comparisonType
)
member Equals :
other:PathString *
comparisonType:StringComparison -> bool
Public Function Equals (
other As PathString,
comparisonType As StringComparison
) As Boolean
Parameters
other
Type: Microsoft.Owin.PathStringThe second PathString for comparison
comparisonType
Type: System.StringComparisonThe StringComparison type to use
Return Value
Type: System.Boolean
True if both PathString values are equal
Return to top