Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Variable.cs « Internal « XPath « Xml « System « System.Xml « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d6f50cf14156dcad1c906741d7c7bd157286609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//------------------------------------------------------------------------------
// <copyright file="Variable.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
// <owner current="true" primary="true">[....]</owner>
//------------------------------------------------------------------------------

namespace MS.Internal.Xml.XPath {
    using System;
    using System.Xml;
    using System.Xml.XPath;

    internal class Variable : AstNode {
        private string localname;
	    private string prefix;

        public Variable(string name, string prefix) {
            this.localname = name;
	        this.prefix    = prefix;
        }

        public override AstType         Type       { get {return AstType.Variable   ; } }
        public override XPathResultType ReturnType { get {return XPathResultType.Any; } }
        
        public string Localname { get { return localname; } }
       	public string Prefix    { get { return prefix;    } }
    }
}