QilInvoke.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / QIL / QilInvoke.cs / 1305376 / QilInvoke.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
//-----------------------------------------------------------------------------
using System; 
using System.Diagnostics; 
using System.Xml.Schema;
using System.Xml.Xsl; 

namespace System.Xml.Xsl.Qil {

    ///  
    /// A function invocation node which represents a call to a Qil functions.
    ///  
    internal class QilInvoke : QilBinary { 

        //----------------------------------------------- 
        // Constructor
        //-----------------------------------------------

        ///  
        /// Construct a new node
        ///  
        public QilInvoke(QilNodeType nodeType, QilNode function, QilNode arguments) : base(nodeType, function, arguments) { 
        }
 

        //-----------------------------------------------
        // QilInvoke methods
        //----------------------------------------------- 

        public QilFunction Function { 
            get { return (QilFunction) Left; } 
            set { Left = value; }
        } 

        public QilList Arguments {
            get { return (QilList) Right; }
            set { Right = value; } 
        }
    } 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
//-----------------------------------------------------------------------------
using System; 
using System.Diagnostics; 
using System.Xml.Schema;
using System.Xml.Xsl; 

namespace System.Xml.Xsl.Qil {

    ///  
    /// A function invocation node which represents a call to a Qil functions.
    ///  
    internal class QilInvoke : QilBinary { 

        //----------------------------------------------- 
        // Constructor
        //-----------------------------------------------

        ///  
        /// Construct a new node
        ///  
        public QilInvoke(QilNodeType nodeType, QilNode function, QilNode arguments) : base(nodeType, function, arguments) { 
        }
 

        //-----------------------------------------------
        // QilInvoke methods
        //----------------------------------------------- 

        public QilFunction Function { 
            get { return (QilFunction) Left; } 
            set { Left = value; }
        } 

        public QilList Arguments {
            get { return (QilList) Right; }
            set { Right = value; } 
        }
    } 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK