DependencyObject.MetaEquals Method (System.Workflow.ComponentModel)

Switch View :
ScriptFree
.NET Framework Class Library
DependencyObject.MetaEquals Method

Determines whether the metaproperties of this DependencyObject equals the metaproperties of the parameterized DependencyObject.

Namespace:  System.Workflow.ComponentModel
Assembly:  System.Workflow.ComponentModel (in System.Workflow.ComponentModel.dll)
Syntax

Visual Basic
Public Function MetaEquals ( _
	dependencyObject As DependencyObject _
) As Boolean
C#
public bool MetaEquals(
	DependencyObject dependencyObject
)
Visual C++
public:
bool MetaEquals(
	DependencyObject^ dependencyObject
)
F#
member MetaEquals : 
        dependencyObject:DependencyObject -> bool 

Parameters

dependencyObject
Type: System.Workflow.ComponentModel.DependencyObject
The DependencyObject to compare with for equality.

Return Value

Type: System.Boolean
true if the metaproperties are equal; otherwise, false.
Remarks

This uses the == operator as defined for the type of private member metaproperties, which is IDictionary.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0
.NET Framework Security

Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference