| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875 |
- //
- // System.Xml.XPath.XPathNavigator
- //
- // Author:
- // Jason Diamond ([email protected])
- // Atsushi Enomoto ([email protected])
- //
- // (C) 2002 Jason Diamond http://injektilo.org/
- // (C) 2004 Novell Inc.
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Collections;
- using System.IO;
- using System.Xml;
- using System.Xml.Schema;
- using Mono.Xml.XPath;
- #if NET_2_0
- using NSResolver = System.Xml.IXmlNamespaceResolver;
- #else
- using NSResolver = System.Xml.XmlNamespaceManager;
- #endif
- namespace System.Xml.XPath
- {
- #if NET_2_0
- public abstract class XPathNavigator : XPathItem,
- ICloneable, IXPathNavigable, IXmlNamespaceResolver
- #else
- public abstract class XPathNavigator : ICloneable
- #endif
- {
- #region Constructor
- protected XPathNavigator ()
- {
- }
- #endregion
- #region Properties
- public abstract string BaseURI { get; }
- #if NET_2_0
- public virtual bool HasAttributes {
- get { return Clone ().MoveToFirstAttribute (); }
- }
- public virtual bool HasChildren {
- get { return Clone ().MoveToFirstChild (); }
- }
- #else
- public abstract bool HasAttributes { get; }
- public abstract bool HasChildren { get; }
- #endif
- public abstract bool IsEmptyElement { get; }
- public abstract string LocalName { get; }
- public abstract string Name { get; }
- public abstract string NamespaceURI { get; }
- public abstract XmlNameTable NameTable { get; }
- public abstract XPathNodeType NodeType { get; }
- public abstract string Prefix { get; }
- #if NET_2_0
- public virtual string XmlLang {
- get {
- XPathNavigator nav = Clone ();
- switch (nav.NodeType) {
- case XPathNodeType.Attribute:
- case XPathNodeType.Namespace:
- nav.MoveToParent ();
- break;
- }
- do {
- if (nav.MoveToAttribute ("lang", "http://www.w3.org/XML/1998/namespace"))
- return nav.Value;
- } while (nav.MoveToParent ());
- return String.Empty;
- }
- }
- #else
- public abstract string Value { get; }
- public abstract string XmlLang { get; }
- #endif
- int Depth
- {
- get
- {
- int cLevels = 0;
- XPathNavigator nav = Clone ();
- while (nav.MoveToParent ())
- cLevels ++;
- return cLevels;
- }
- }
- #endregion
- #region Methods
- public abstract XPathNavigator Clone ();
- public virtual XmlNodeOrder ComparePosition (XPathNavigator nav)
- {
- if (IsSamePosition (nav))
- return XmlNodeOrder.Same;
- XPathNavigator nav1 = Clone ();
- XPathNavigator nav2 = nav.Clone ();
- int nDepth1 = nav1.Depth;
- int nDepth2 = nav2.Depth;
- if (nDepth1 > nDepth2)
- {
- while (nDepth1 > nDepth2)
- {
- if (!nav1.MoveToParent ())
- break;
- nDepth1 --;
- }
- if (nav1.IsSamePosition (nav2))
- return XmlNodeOrder.After;
- }
- else if (nDepth1 < nDepth2)
- {
- while (nDepth1 < nDepth2)
- {
- if (!nav2.MoveToParent ())
- break;
- nDepth2 --;
- }
- if (nav1.IsSamePosition (nav2))
- return XmlNodeOrder.Before;
- }
- XPathNavigator parent1 = nav1.Clone ();
- XPathNavigator parent2 = nav2.Clone ();
- while (parent1.MoveToParent () && parent2.MoveToParent ())
- {
- if (parent1.IsSamePosition (parent2))
- {
- // the ordering is namespace, attribute, children
- // assume that nav1 is before nav2, find counter-example
- if (nav1.NodeType == XPathNodeType.Namespace)
- {
- if (nav2.NodeType == XPathNodeType.Namespace)
- {
- // match namespaces
- while (nav2.MoveToNextNamespace ())
- if (nav2.IsSamePosition (nav1))
- return XmlNodeOrder.After;
- }
- }
- else if (nav1.NodeType == XPathNodeType.Attribute)
- {
- if (nav2.NodeType == XPathNodeType.Namespace)
- return XmlNodeOrder.After;
- else if (nav2.NodeType == XPathNodeType.Attribute)
- {
- // match attributes
- while (nav2.MoveToNextAttribute ())
- if (nav2.IsSamePosition (nav1))
- return XmlNodeOrder.After;
- }
- }
- else
- {
- switch (nav2.NodeType) {
- case XPathNodeType.Namespace:
- case XPathNodeType.Attribute:
- return XmlNodeOrder.After;
- }
- // match children
- while (nav2.MoveToNext ())
- if (nav2.IsSamePosition (nav1))
- return XmlNodeOrder.After;
- }
- return XmlNodeOrder.Before;
- }
- nav1.MoveToParent ();
- nav2.MoveToParent ();
- }
- return XmlNodeOrder.Unknown;
- }
- public virtual XPathExpression Compile (string xpath)
- {
- XPathParser parser = new XPathParser ();
- return new CompiledExpression (parser.Compile (xpath));
- }
-
- internal virtual XPathExpression Compile (string xpath, System.Xml.Xsl.IStaticXsltContext ctx)
- {
- XPathParser parser = new XPathParser (ctx);
- return new CompiledExpression (parser.Compile (xpath));
- }
- public virtual object Evaluate (string xpath)
- {
- return Evaluate (Compile (xpath));
- }
- public virtual object Evaluate (XPathExpression expr)
- {
- return Evaluate (expr, null);
- }
- public virtual object Evaluate (XPathExpression expr, XPathNodeIterator context)
- {
- return Evaluate (expr, context, null);
- }
-
- internal virtual object Evaluate (XPathExpression expr, XPathNodeIterator context, NSResolver ctx)
- {
- CompiledExpression cexpr = (CompiledExpression) expr;
- if (ctx == null)
- ctx = cexpr.NamespaceManager;
-
- if (context == null)
- context = new NullIterator (this, ctx);
- BaseIterator iterContext = (BaseIterator) context;
- iterContext.NamespaceManager = ctx;
- return cexpr.Evaluate (iterContext);
- }
- internal XPathNodeIterator EvaluateNodeSet (XPathExpression expr, XPathNodeIterator context, NSResolver ctx)
- {
- CompiledExpression cexpr = (CompiledExpression) expr;
- if (ctx == null)
- ctx = cexpr.NamespaceManager;
-
- if (context == null)
- context = new NullIterator (this, cexpr.NamespaceManager);
- BaseIterator iterContext = (BaseIterator) context;
- iterContext.NamespaceManager = ctx;
- return cexpr.EvaluateNodeSet (iterContext);
- }
- internal string EvaluateString (XPathExpression expr, XPathNodeIterator context, NSResolver ctx)
- {
- CompiledExpression cexpr = (CompiledExpression) expr;
- if (ctx == null)
- ctx = cexpr.NamespaceManager;
-
- if (context == null)
- context = new NullIterator (this, cexpr.NamespaceManager);
- BaseIterator iterContext = (BaseIterator) context;
- iterContext.NamespaceManager = ctx;
- return cexpr.EvaluateString (iterContext);
- }
- internal double EvaluateNumber (XPathExpression expr, XPathNodeIterator context, NSResolver ctx)
- {
- CompiledExpression cexpr = (CompiledExpression) expr;
- if (ctx == null)
- ctx = cexpr.NamespaceManager;
-
- if (context == null)
- context = new NullIterator (this, cexpr.NamespaceManager);
- BaseIterator iterContext = (BaseIterator) context;
- iterContext.NamespaceManager = ctx;
- return cexpr.EvaluateNumber (iterContext);
- }
- internal bool EvaluateBoolean (XPathExpression expr, XPathNodeIterator context, NSResolver ctx)
- {
- CompiledExpression cexpr = (CompiledExpression) expr;
- if (ctx == null)
- ctx = cexpr.NamespaceManager;
-
- if (context == null)
- context = new NullIterator (this, cexpr.NamespaceManager);
- BaseIterator iterContext = (BaseIterator) context;
- iterContext.NamespaceManager = ctx;
- return cexpr.EvaluateBoolean (iterContext);
- }
- #if NET_2_0
- public virtual string GetAttribute (string localName, string namespaceURI)
- {
- XPathNavigator nav = Clone ();
- if (nav.MoveToAttribute (localName, namespaceURI))
- return nav.Value;
- else
- return String.Empty;
- }
- public virtual string GetNamespace (string name)
- {
- XPathNavigator nav = Clone ();
- if (nav.MoveToNamespace (name))
- return nav.Value;
- else
- return String.Empty;
- }
- #else
- public abstract string GetAttribute (string localName, string namespaceURI);
- public abstract string GetNamespace (string name);
- #endif
-
- object ICloneable.Clone ()
- {
- return Clone ();
- }
- public virtual bool IsDescendant (XPathNavigator nav)
- {
- if (nav != null)
- {
- nav = nav.Clone ();
- while (nav.MoveToParent ())
- {
- if (IsSamePosition (nav))
- return true;
- }
- }
- return false;
- }
- public abstract bool IsSamePosition (XPathNavigator other);
- public virtual bool Matches (string xpath)
- {
- return Matches (Compile (xpath));
- }
- public virtual bool Matches (XPathExpression expr)
- {
- Expression e = ((CompiledExpression) expr).ExpressionNode;
- if (e is ExprRoot)
- return NodeType == XPathNodeType.Root;
-
- NodeTest nt = e as NodeTest;
- if (nt != null) {
- switch (nt.Axis.Axis) {
- case Axes.Child:
- case Axes.Attribute:
- break;
- default:
- throw new XPathException ("Only child and attribute pattern are allowed for a pattern.");
- }
- return nt.Match (((CompiledExpression)expr).NamespaceManager, this);
- }
- if (e is ExprFilter) {
- do {
- e = ((ExprFilter) e).LeftHandSide;
- } while (e is ExprFilter);
-
- if (e is NodeTest && !((NodeTest) e).Match (((CompiledExpression) expr).NamespaceManager, this))
- return false;
- }
- XPathResultType resultType = e.ReturnType;
- switch (resultType) {
- case XPathResultType.Any:
- case XPathResultType.NodeSet:
- break;
- default:
- return false;
- }
- switch (e.EvaluatedNodeType) {
- case XPathNodeType.Attribute:
- case XPathNodeType.Namespace:
- if (NodeType != e.EvaluatedNodeType)
- return false;
- break;
- }
- XPathNodeIterator nodes;
- nodes = this.Select (expr);
- while (nodes.MoveNext ()) {
- if (IsSamePosition (nodes.Current))
- return true;
- }
- // ancestors might select this node.
- XPathNavigator navigator = Clone ();
- while (navigator.MoveToParent ()) {
- nodes = navigator.Select (expr);
- while (nodes.MoveNext ()) {
- if (IsSamePosition (nodes.Current))
- return true;
- }
- }
- return false;
- }
- public abstract bool MoveTo (XPathNavigator other);
- #if NET_2_0
- public virtual bool MoveToAttribute (string localName, string namespaceURI)
- {
- if (MoveToFirstAttribute ()) {
- do {
- if (LocalName == localName && NamespaceURI == namespaceURI)
- return true;
- } while (MoveToNextAttribute ());
- MoveToParent ();
- }
- return false;
- }
- public virtual bool MoveToNamespace (string name)
- {
- if (MoveToFirstNamespace ()) {
- do {
- if (LocalName == name)
- return true;
- } while (MoveToNextNamespace ());
- MoveToParent ();
- }
- return false;
- }
- public virtual bool MoveToFirst ()
- {
- if (MoveToPrevious ()) {
- // It would be able to invoke MoveToPrevious() until the end, but this way would be much faster
- MoveToParent ();
- MoveToFirstChild ();
- return true;
- }
- return false;
- }
- public virtual void MoveToRoot ()
- {
- while (MoveToParent ())
- ;
- }
- #else
- public abstract bool MoveToAttribute (string localName, string namespaceURI);
- public abstract bool MoveToNamespace (string name);
- public abstract bool MoveToFirst ();
- public abstract void MoveToRoot ();
- #endif
- public abstract bool MoveToFirstAttribute ();
- public abstract bool MoveToFirstChild ();
- public bool MoveToFirstNamespace ()
- {
- return MoveToFirstNamespace (XPathNamespaceScope.All);
- }
- public abstract bool MoveToFirstNamespace (XPathNamespaceScope namespaceScope);
- public abstract bool MoveToId (string id);
- public abstract bool MoveToNext ();
- public abstract bool MoveToNextAttribute ();
- public bool MoveToNextNamespace ()
- {
- return MoveToNextNamespace (XPathNamespaceScope.All);
- }
- public abstract bool MoveToNextNamespace (XPathNamespaceScope namespaceScope);
- public abstract bool MoveToParent ();
- public abstract bool MoveToPrevious ();
- public virtual XPathNodeIterator Select (string xpath)
- {
- return Select (Compile (xpath));
- }
- public virtual XPathNodeIterator Select (XPathExpression expr)
- {
- return Select (expr, null);
- }
-
- internal virtual XPathNodeIterator Select (XPathExpression expr, NSResolver ctx)
- {
- CompiledExpression cexpr = (CompiledExpression) expr;
- if (ctx == null)
- ctx = cexpr.NamespaceManager;
-
- BaseIterator iter = new NullIterator (this, ctx);
- return cexpr.EvaluateNodeSet (iter);
- }
- public virtual XPathNodeIterator SelectAncestors (XPathNodeType type, bool matchSelf)
- {
- Axes axis = (matchSelf) ? Axes.AncestorOrSelf : Axes.Ancestor;
- return SelectTest (new NodeTypeTest (axis, type));
- }
- public virtual XPathNodeIterator SelectAncestors (string name, string namespaceURI, bool matchSelf)
- {
- if (name == null)
- throw new ArgumentNullException ("name");
- if (namespaceURI == null)
- throw new ArgumentNullException ("namespaceURI");
- Axes axis = (matchSelf) ? Axes.AncestorOrSelf : Axes.Ancestor;
- XmlQualifiedName qname = new XmlQualifiedName (name, namespaceURI);
- return SelectTest (new NodeNameTest (axis, qname, true));
- }
- public virtual XPathNodeIterator SelectChildren (XPathNodeType type)
- {
- return SelectTest (new NodeTypeTest (Axes.Child, type));
- }
- public virtual XPathNodeIterator SelectChildren (string name, string namespaceURI)
- {
- if (name == null)
- throw new ArgumentNullException ("name");
- if (namespaceURI == null)
- throw new ArgumentNullException ("namespaceURI");
- Axes axis = Axes.Child;
- XmlQualifiedName qname = new XmlQualifiedName (name, namespaceURI);
- return SelectTest (new NodeNameTest (axis, qname, true));
- }
- public virtual XPathNodeIterator SelectDescendants (XPathNodeType type, bool matchSelf)
- {
- Axes axis = (matchSelf) ? Axes.DescendantOrSelf : Axes.Descendant;
- return SelectTest (new NodeTypeTest (axis, type));
- }
- public virtual XPathNodeIterator SelectDescendants (string name, string namespaceURI, bool matchSelf)
- {
- if (name == null)
- throw new ArgumentNullException ("name");
- if (namespaceURI == null)
- throw new ArgumentNullException ("namespaceURI");
- Axes axis = (matchSelf) ? Axes.DescendantOrSelf : Axes.Descendant;
- XmlQualifiedName qname = new XmlQualifiedName (name, namespaceURI);
- return SelectTest (new NodeNameTest (axis, qname, true));
- }
- internal XPathNodeIterator SelectTest (NodeTest test)
- {
- return test.EvaluateNodeSet (new NullIterator (this));
- }
- public override string ToString ()
- {
- return Value;
- }
- #endregion
- #if NET_2_0
- [MonoTODO]
- public virtual bool CheckValidity (XmlSchemaSet schemas, ValidationEventHandler handler)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual object CopyAsObject (Type targetType)
- {
- throw new NotImplementedException ();
- }
- public virtual XPathNavigator CreateNavigator ()
- {
- return Clone ();
- }
- [MonoTODO]
- public virtual object Evaluate (string xpath, IXmlNamespaceResolver nsResolver)
- {
- return Evaluate (Compile (xpath), null, nsResolver);
- }
- [MonoTODO]
- public virtual IDictionary GetNamespacesInScope (XmlNamespaceScope scope)
- {
- throw new NotImplementedException ();
- }
- public virtual string LookupNamespace (string prefix)
- {
- return LookupNamespace (prefix, false);
- }
- public virtual string LookupNamespace (string prefix, bool atomizedNames)
- {
- XPathNavigator nav = Clone ();
- if (nav.NodeType != XPathNodeType.Element)
- nav.MoveToParent ();
- if (nav.MoveToNamespace (prefix)) {
- if (atomizedNames)
- return nav.NameTable.Add (nav.Value);
- else
- return nav.Value;
- }
- return null;
- }
- public virtual string LookupPrefix (string namespaceUri)
- {
- return LookupPrefix (namespaceUri, false);
- }
- [MonoTODO]
- public virtual string LookupPrefix (string namespaceUri, bool atomizedNames)
- {
- throw new NotImplementedException ();
- }
- public virtual bool MoveToAttribute (string localName, string namespaceURI, bool atomizedNames)
- {
- return MoveToAttribute (localName, namespaceURI);
- }
- private bool MoveTo (XPathNodeIterator iter)
- {
- if (iter.MoveNext ()) {
- MoveTo (iter.Current);
- return true;
- }
- else
- return false;
- }
- public virtual bool MoveToChild (XPathNodeType type)
- {
- return MoveTo (SelectChildren (type));
- }
- public virtual bool MoveToChild (string localName, string namespaceURI)
- {
- return MoveTo (SelectChildren (localName, namespaceURI));
- }
- public virtual bool MoveToChild (string localName, string namespaceURI, bool atomizedNames)
- {
- return MoveToChild (localName, namespaceURI);
- }
- public virtual bool MoveToDescendant (XPathNodeType type)
- {
- return MoveTo (SelectDescendants (type, false));
- }
- public virtual bool MoveToDescendant (string localName, string namespaceURI)
- {
- return MoveTo (SelectDescendants (localName, namespaceURI, false));
- }
- public virtual bool MoveToDescendant (string localName, string namespaceURI, bool atomizedNames)
- {
- return MoveToDescendant (localName, namespaceURI);
- }
- public virtual bool MoveToNext (string localName, string namespaceURI)
- {
- XPathNavigator nav = Clone ();
- while (nav.MoveToNext ()) {
- if (nav.LocalName == localName &&
- nav.NamespaceURI == namespaceURI) {
- MoveTo (nav);
- return true;
- }
- }
- return false;
- }
- public virtual bool MoveToNext (string localName, string namespaceURI, bool atomizedNames)
- {
- return MoveToNext (localName, namespaceURI);
- }
- public virtual bool MoveToNext (XPathNodeType type)
- {
- XPathNavigator nav = Clone ();
- while (nav.MoveToNext ()) {
- if (nav.NodeType == type) {
- MoveTo (nav);
- return true;
- }
- }
- return false;
- }
- [MonoTODO]
- public virtual XmlReader ReadSubtree ()
- {
- return new XPathNavigatorReader (this);
- }
- public virtual XPathNodeIterator Select (string xpath, IXmlNamespaceResolver nsResolver)
- {
- return Select (Compile (xpath), nsResolver);
- }
- public virtual XPathNavigator SelectSingleNode (string xpath)
- {
- return SelectSingleNode (xpath, null);
- }
- public virtual XPathNavigator SelectSingleNode (string xpath, IXmlNamespaceResolver nsResolver)
- {
- XPathExpression expr = Compile (xpath);
- expr.SetContext (nsResolver);
- return SelectSingleNode (expr);
- }
- public XPathNavigator SelectSingleNode (XPathExpression expression)
- {
- XPathNodeIterator iter = Select (expression);
- if (iter.MoveNext ())
- return iter.Current;
- else
- return null;
- }
- [MonoTODO]
- public override object ValueAs (Type type, IXmlNamespaceResolver nsResolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void WriteSubtree (XmlWriter writer)
- {
- XmlReader st = ReadSubtree ();
- writer.WriteNode (st, false);
- }
- [MonoTODO]
- public virtual string InnerXml {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override bool IsNode {
- get { return true; }
- }
- [MonoTODO]
- public virtual IKeyComparer NavigatorComparer {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual string OuterXml {
- get {
- StringWriter sw = new StringWriter ();
- XmlTextWriter xtw = new XmlTextWriter (sw);
- WriteSubtree (xtw);
- xtw.Close ();
- return sw.ToString ();
- }
- }
- [MonoTODO]
- public virtual IXmlSchemaInfo SchemaInfo {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override object TypedValue {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public virtual object UnderlyingObject {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override bool ValueAsBoolean {
- get { return XQueryConvert.StringToBoolean (Value); }
- }
- [MonoTODO]
- public override DateTime ValueAsDateTime {
- get { return XmlConvert.ToDateTime (Value); }
- }
- [MonoTODO]
- public override decimal ValueAsDecimal {
- get { return XQueryConvert.StringToDecimal (Value); }
- }
- [MonoTODO]
- public override double ValueAsDouble {
- get { return XQueryConvert.StringToDouble (Value); }
- }
- [MonoTODO]
- public override int ValueAsInt32 {
- get { return XQueryConvert.StringToInt (Value); }
- }
- [MonoTODO]
- public override long ValueAsInt64 {
- get { return XQueryConvert.StringToInteger (Value); }
- }
- [MonoTODO]
- public override ICollection ValueAsList {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override float ValueAsSingle {
- get { return XQueryConvert.StringToFloat (Value); }
- }
- [MonoTODO]
- public override Type ValueType {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override XmlSchemaType XmlType {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- protected XmlReader GetValidatingReader (XmlSchemaSet schemas, ValidationEventHandler handler, XmlSchemaType schemaType)
- {
- throw new NotImplementedException ();
- }
- #endif
- }
- }
|