FilterableAttribute.Equals(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether the current instance of the FilterableAttribute class is equal to the specified object.
public:
override bool Equals(System::Object ^ obj);
public override bool Equals (object obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
Parameters
Returns
true
if the object contained in the obj
parameter is equal to the current instance of the FilterableAttribute object; otherwise, false
.
Remarks
Use the Equals method to determine whether the current instance of the FilterableAttribute class is equal to the specified object. For the objects to be equal, they must meet the following criteria:
The object contained in the
obj
parameter must be a FilterableAttribute object.The Filterable property of both objects must be equal.
Note
This method is used primarily by control developers.