Поделиться через


QueryString.Equals Method

 

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

Overload List

Name Description
System_CAPS_pubmethod Equals(Object)

Indicates whether the current instance is equal to the other instance.(Overrides ValueType.Equals(Object).)

System_CAPS_pubmethod 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

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

Return Value

Type: System.Boolean

Returns Boolean.

Implements

IEquatable<T>.Equals(T)

Return to top