XmlElementAttribute.Form 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 or sets a value that indicates whether the element is qualified.
public:
property System::Xml::Schema::XmlSchemaForm Form { System::Xml::Schema::XmlSchemaForm get(); void set(System::Xml::Schema::XmlSchemaForm value); };
public System.Xml.Schema.XmlSchemaForm Form { get; set; }
member this.Form : System.Xml.Schema.XmlSchemaForm with get, set
Public Property Form As XmlSchemaForm
Property Value
One of the XmlSchemaForm values. The default is None.
Examples
The following example sets the Form property to XmlSchemaForm.Unqualified
.
public ref class MyClass
{
public:
[XmlElement(Form=XmlSchemaForm::Unqualified)]
String^ ClassName;
};
public class MyClass
{
[XmlElement(Form = XmlSchemaForm.Unqualified)]
public string ClassName;
}
Public Class MyClass1
<XmlElement(Form := XmlSchemaForm.Unqualified)> _
Public ClassName As String
End Class
Remarks
The Form property determines whether an XML element is qualified or unqualified. The Form property conforms to the World Wide Web Consortium 1999 specification, Namespaces in XML.
If the Namespace property is set to any value, attempting to set the Form property to XmlSchemaForm.Unqualified
throws an exception. The default setting, XmlSchemaForm.None
, instructs the XmlSerializer to check the schema for the XML document to determine whether the namespace is qualified. If the schema does not specify a value for an individual element or attribute, the XmlSerializer uses the elementFormDefault
and attributeFormDefault
values to determine whether an element or attribute is qualified. The following XML code shows a schema:
<schema elementFormDefault="qualified"
attributeFormDefault="unqualified"... >
<element name="Name"/>
<attribute name="Number"/>
</schema>
When the XmlSerializer reads the schema, the Form value for both the Name
and Number
is XmlSchemaForm.None
, but the Name
element is qualified, while the Number
element is unqualified.