Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / System.Xml / System / Xml / XPath / Internal / Group.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="Group.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>                                                                
5 // <owner current="true" primary="true">Microsoft</owner>
6 //------------------------------------------------------------------------------
7
8 namespace MS.Internal.Xml.XPath {
9     using System;
10     using System.Xml;
11     using System.Xml.XPath;
12     using System.Diagnostics;
13     using System.Globalization;
14     internal class Group : AstNode {
15         private AstNode groupNode;
16
17         public Group(AstNode groupNode) {
18             this.groupNode = groupNode;
19         }
20         public override AstType         Type       { get { return AstType.Group;           } }
21         public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } }
22
23         public AstNode GroupNode { get { return groupNode; } }
24     }
25 }
26
27