XamlMember.Name Property
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.
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.