XamlMember.Name Property

Definition

Gets the xamlName name string that declares this XamlMember.

public:
 property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As String

Property Value

The xamlName name string that declares this XamlMember.

Remarks

This value is always set during construction. The constructors that are implemented by XamlMember typically throw an exception if an initial name is not specified; therefore, do not expect this property to be null or an empty string, if you are using default .NET Framework XAML Services implementations.

XamlName Grammar and naming rules for CLR type and members are not an exact intersect. It is possible to declare a member name that is legal under CLR but not valid under XAML naming. You should avoid this situation if possible.

Applies to

See also