2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <copyright file="Root.cs" company="Microsoft">
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// </copyright>
|
2017-08-21 15:34:15 +00:00
|
|
|
// <owner current="true" primary="true">Microsoft</owner>
|
2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace MS.Internal.Xml.XPath {
|
|
|
|
using System;
|
|
|
|
using System.Xml;
|
|
|
|
using System.Xml.XPath;
|
|
|
|
|
|
|
|
internal class Root : AstNode {
|
|
|
|
public Root() {}
|
|
|
|
|
|
|
|
public override AstType Type { get { return AstType.Root; } }
|
|
|
|
public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
|
|
|
|
}
|
|
|
|
}
|