DependencyPropertyChangedEventArgs.Equals 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.
Returns whether the provided object is equivalent to the current DependencyPropertyChangedEventArgs.
Overloads
Equals(Object) |
Determines whether the provided object is equivalent to the current DependencyPropertyChangedEventArgs. |
Equals(DependencyPropertyChangedEventArgs) |
Determines whether the provided DependencyPropertyChangedEventArgs is equivalent to the current DependencyPropertyChangedEventArgs. |
Equals(Object)
Determines whether the provided object is equivalent to the current DependencyPropertyChangedEventArgs.
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
- obj
- Object
The object to compare to the current DependencyPropertyChangedEventArgs.
Returns
true
if the provided object is equivalent to the current DependencyPropertyChangedEventArgs; otherwise, false
.
Remarks
This implementation relies on value equivalence of all properties, including internal properties.
Applies to
Equals(DependencyPropertyChangedEventArgs)
Determines whether the provided DependencyPropertyChangedEventArgs is equivalent to the current DependencyPropertyChangedEventArgs.
public:
bool Equals(System::Windows::DependencyPropertyChangedEventArgs args);
public bool Equals (System.Windows.DependencyPropertyChangedEventArgs args);
override this.Equals : System.Windows.DependencyPropertyChangedEventArgs -> bool
Public Function Equals (args As DependencyPropertyChangedEventArgs) As Boolean
Parameters
The DependencyPropertyChangedEventArgs to compare to the current DependencyPropertyChangedEventArgs.
Returns
true
if the provided DependencyPropertyChangedEventArgs is equivalent to the current DependencyPropertyChangedEventArgs; otherwise, false
.
Remarks
This implementation relies on value equivalence of all properties, including internal properties.