NameScope.SetNameScope(DependencyObject, INameScope) Method

Definition

Provides the attached property set accessor for the NameScope attached property.

public:
 static void SetNameScope(System::Windows::DependencyObject ^ dependencyObject, System::Windows::Markup::INameScope ^ value);
public static void SetNameScope (System.Windows.DependencyObject dependencyObject, System.Windows.Markup.INameScope value);
static member SetNameScope : System.Windows.DependencyObject * System.Windows.Markup.INameScope -> unit
Public Shared Sub SetNameScope (dependencyObject As DependencyObject, value As INameScope)

Parameters

dependencyObject
DependencyObject

Object to change XAML namescope for.

value
INameScope

The new XAML namescope, using an interface cast.

Exceptions

dependencyObject is null.

Remarks

The purpose of this method is both to act as the set accessor for using NameScope as an attached property in XAML usage, and to provide the accessor for performing the equivalent operation in code.

Applies to

See also