Capabilities.Equals Method

 

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

Overload List

Name Description
System_CAPS_pubmethod Equals(Capabilities)

Determines whether the current Capabilities instance is equal to the specified Capabilities.

System_CAPS_pubmethod Equals(Object)

Determines whether the current Capabilities is equal to the specified object.(Overrides ValueType.Equals(Object).)

See Also

Capabilities Structure
Microsoft.Owin.BuilderProperties Namespace

Return to top

Capabilities.Equals Method (Capabilities)

Determines whether the current Capabilities instance is equal to the specified Capabilities.

Syntax

public bool Equals(
    Capabilities other
)
public:
bool Equals(
    Capabilities other
)
member Equals : 
        other:Capabilities -> bool
Public Function Equals (
    other As Capabilities
) As Boolean

Parameters

Return Value

Type: System.Boolean

true if the specified object is equal to the current object; otherwise, false.

Return to top

Capabilities.Equals Method (Object)

Determines whether the current Capabilities is equal to the specified object.

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

    The object to compare with the current instance.

Return Value

Type: System.Boolean

true if the current Capabilities is equal to the specified object; otherwise, false.

Return to top