AddressCollection.Equals Method
Determines whether the current collection is equal to the specified collection.
Namespace: Microsoft.Owin.BuilderProperties
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Overload List
Name | Description | |
---|---|---|
![]() |
Equals(AddressCollection) | Determines whether the current collection is equal to the specified collection. |
![]() |
Equals(Object) | Determines whether the current collection is equal to the specified object.(Overrides ValueType.Equals(Object).) |
See Also
AddressCollection Structure
Microsoft.Owin.BuilderProperties Namespace
Return to top
AddressCollection.Equals Method (AddressCollection)
Determines whether the current collection is equal to the specified collection.
Syntax
public bool Equals(
AddressCollection other
)
public:
bool Equals(
AddressCollection other
)
member Equals :
other:AddressCollection -> bool
Public Function Equals (
other As AddressCollection
) As Boolean
Parameters
other
Type: Microsoft.Owin.BuilderProperties.AddressCollectionThe other collection to compare to the current collection.
Return Value
Type: System.Boolean
true if current collection is equal to the specified collection; otherwise, false.
Return to top
AddressCollection.Equals Method (Object)
Determines whether the current collection 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.ObjectThe object to compare to the current collection.
Return Value
Type: System.Boolean
true if current collection is equal to the specified object; otherwise, false.
Return to top