QueryString.Equals Method
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Overload List
Name | Description | |
---|---|---|
Equals(Object) | Indicates whether the current instance is equal to the other instance.(Overrides ValueType.Equals(Object).) |
|
Equals(QueryString) | Indicates whether the current instance is equal to the other instance. |
See Also
QueryString Structure
Microsoft.Owin Namespace
Return to top
QueryString.Equals Method (Object)
Indicates whether the current instance is equal to the other instance.
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.Object
Return Value
Type: System.Boolean
Returns Boolean.
Return to top
QueryString.Equals Method (QueryString)
Indicates whether the current instance is equal to the other instance.
Syntax
public bool Equals(
QueryString other
)
public:
virtual bool Equals(
QueryString other
) sealed
abstract Equals :
other:QueryString -> bool
override Equals :
other:QueryString -> bool
Public Function Equals (
other As QueryString
) As Boolean
Parameters
- other
Type: Microsoft.Owin.QueryString
Return Value
Type: System.Boolean
Returns Boolean.
Implements
Return to top