INameScope.RegisterName(String, Object) 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.
Registers the provided name into the current XAML namescope.
public:
void RegisterName(System::String ^ name, System::Object ^ scopedElement);
public void RegisterName (string name, object scopedElement);
abstract member RegisterName : string * obj -> unit
Public Sub RegisterName (name As String, scopedElement As Object)
Parameters
- name
- String
The name to register.
- scopedElement
- Object
The specific element that the provided name
refers to.
Remarks
Duplicate names in a XAML namescope are not permitted.
Notes to Implementers
Do not permit duplicate names to be registered. If the input name
is already assigned to an existing element in the internal collection representation of the XAML namescope (even if it is the same as scopedElement
), throw an exception.
Also consider throwing an exception if the provided name does not conform to XamlName Grammar.