Share via


AppProperties.Equals Method

 

Determines whether the current AppProperties is equal to the specified AppProperties.

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

Overload List

Name Description
System_CAPS_pubmethod Equals(AppProperties)

Determines whether the current AppProperties is equal to the specified AppProperties.

System_CAPS_pubmethod Equals(Object)

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

See Also

AppProperties Structure
Microsoft.Owin.BuilderProperties Namespace

Return to top

AppProperties.Equals Method (AppProperties)

Determines whether the current AppProperties is equal to the specified AppProperties.

Syntax

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

Parameters

Return Value

Type: System.Boolean

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

Return to top

AppProperties.Equals Method (Object)

Determines whether the current AppProperties 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 AppProperties is equal to the specified object; otherwise, false.

Return to top