XmlAtomicValue.ValueType 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 .NET type of the validated XML element or attribute.
public:
virtual property Type ^ ValueType { Type ^ get(); };
public override Type ValueType { get; }
member this.ValueType : Type
Public Overrides ReadOnly Property ValueType As Type
Property Value
The .NET type of the validated XML element or attribute. The default value is String.
Remarks
The ValueType property gets the .NET type of the typed value of the validated XML element or attribute.
For example, an element of type xs:int
would have a ValueType of Int32 by default. However, the ValueType could be any one of the valid types that can be mapped to xs:int
, such as Int16 or Double.
For more information about type support in the System.Xml namespace, see Type Support in the System.Xml Classes.