NameScope.RegisterName(String, Object) Method

Definition

Registers a new name-object pair into the current XAML namescope.

public:
 virtual void RegisterName(System::String ^ name, System::Object ^ scopedElement);
public void RegisterName (string name, object scopedElement);
abstract member RegisterName : string * obj -> unit
override this.RegisterName : string * obj -> unit
Public Sub RegisterName (name As String, scopedElement As Object)

Parameters

name
String

The name to use for mapping the given object.

scopedElement
Object

The object to be mapped to the provided name.

Implements

Exceptions

name or scopedElement was provided as null.

name was provided as empty string

-or-

name provided was rejected by the parser, because it contained characters that are invalid for a XAML name

-or-

name provided would result in a duplicate name registration.

Applies to

See also