Updates referencesource to .NET 4.7
[mono-project.git] / mcs / class / referencesource / System.Xml / System / Xml / XPath / Internal / Root.cs
blobad0fa9c9186e62ca06cf6fa52e291bf18d514468
1 //------------------------------------------------------------------------------
2 // <copyright file="Root.cs" company="Microsoft">
3 // Copyright (c) Microsoft Corporation. All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">Microsoft</owner>
6 //------------------------------------------------------------------------------
8 namespace MS.Internal.Xml.XPath {
9 using System;
10 using System.Xml;
11 using System.Xml.XPath;
13 internal class Root : AstNode {
14 public Root() {}
16 public override AstType Type { get { return AstType.Root; } }
17 public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }