2 types derived from XPathItem
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlAtomicValue.cs (1)
22
public sealed class XmlAtomicValue :
XPathItem
, ICloneable
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (1)
31
public abstract class XPathNavigator :
XPathItem
, ICloneable, IXPathNavigable, IXmlNamespaceResolver
9 references to XPathItem
dotnet-svcutil-lib (9)
FrameworkFork\Microsoft.Xml\Xml\schema\GenerateConverter.cs (1)
998
if (name == "XPathItem") return typeof(
XPathItem
);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlAtomicValue.cs (1)
348
if (type == typeof(
XPathItem
) || type == typeof(XmlAtomicValue))
FrameworkFork\Microsoft.Xml\Xml\schema\XmlValueConverter.cs (7)
362
protected static readonly Type XPathItemType = typeof(
XPathItem
);
2242
if (destinationType == XPathItemType) return ((
XPathItem
)this.ChangeType(value, XmlAtomicValueType, nsResolver));
2263
if (destinationType == XPathItemType) return ((
XPathItem
)this.ChangeType(value, XmlAtomicValueType, nsResolver));
3033
if (IsDerivedFrom(sourceType, XPathNavigatorType)) return ((
XPathItem
)value);
3353
if (destinationType == XPathItemType) return ((
XPathItem
)this.ChangeType(value, XmlAtomicValueType, nsResolver));
3374
if (destinationType == XPathItemType) return ((
XPathItem
)this.ChangeType(value, XmlAtomicValueType, nsResolver));
3534
if (itemTypeDst == XPathItemType) return ToArray<
XPathItem
>(value, nsResolver);