VirtualizationCacheLength.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.
Determines whether two objects are equal.
Overloads
Equals(Object) |
Determines whether the specified object is equal to the current VirtualizationCacheLength. |
Equals(VirtualizationCacheLength) |
Determines whether the specified VirtualizationCacheLength is equal to the current VirtualizationCacheLength. |
Equals(Object)
Determines whether the specified object is equal to the current VirtualizationCacheLength.
public:
override bool Equals(System::Object ^ oCompare);
public override bool Equals (object oCompare);
override this.Equals : obj -> bool
Public Overrides Function Equals (oCompare As Object) As Boolean
Parameters
- oCompare
- Object
The object to compare with the current VirtualizationCacheLength.
Returns
true
if the specified object is equal to the current VirtualizationCacheLength; otherwise, false
.
Remarks
The VirtualizationCacheLength checks for value equality. That is, the two objects are equal if their CacheBeforeViewport property values are equal and their CacheAfterViewport property values are equal.
Applies to
Equals(VirtualizationCacheLength)
Determines whether the specified VirtualizationCacheLength is equal to the current VirtualizationCacheLength.
public:
virtual bool Equals(System::Windows::Controls::VirtualizationCacheLength cacheLength);
public bool Equals (System.Windows.Controls.VirtualizationCacheLength cacheLength);
override this.Equals : System.Windows.Controls.VirtualizationCacheLength -> bool
Public Function Equals (cacheLength As VirtualizationCacheLength) As Boolean
Parameters
- cacheLength
- VirtualizationCacheLength
The object to compare with the current VirtualizationCacheLength.
Returns
true
if the specified object is equal to the current VirtualizationCacheLength; otherwise, false
.
Implements
Remarks
The VirtualizationCacheLength checks for value equality. That is, the two objects are equal if their CacheBeforeViewport property values are equal and their CacheAfterViewport property values are equal.