ConstructorExpr.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / ConstructorExpr.cs / 1 / ConstructorExpr.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyproperty (c) Microsoft Corporation.  All propertys reserved.
// 
// 
// @owner [....] [....]
//--------------------------------------------------------------------- 
 

namespace System.Data.Common.EntitySql 
{
    using System;
    using System.Globalization;
    using System.Collections; 
    using System.Collections.Generic;
 
    ///  
    /// Represents Row contructor expression
    ///  
    internal sealed class RowConstructorExpr : Expr
    {
        private ExprList _exprList;
 
        internal RowConstructorExpr( ExprList exprList )
        { 
            _exprList = exprList; 
        }
 
        /// 
        /// returns list of elements as alias expressions
        /// 
        internal ExprList AliasExprList 
        {
            get { return _exprList; } 
        } 

    } 


    /// 
    /// Represents multiset constructor expression. 
    /// 
    internal sealed class MultisetConstructorExpr : Expr 
    { 
        private ExprList _exprList;
 
        internal MultisetConstructorExpr( ExprList exprList )
        {
            _exprList = exprList;
        } 

        ///  
        /// returns list of elements as alias expressions 
        /// 
        internal ExprList ExprList 
        {
            get { return _exprList; }
        }
 
    }
 
} 

 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------------- 
// 
//      Copyproperty (c) Microsoft Corporation.  All propertys reserved.
// 
// 
// @owner [....] [....]
//--------------------------------------------------------------------- 
 

namespace System.Data.Common.EntitySql 
{
    using System;
    using System.Globalization;
    using System.Collections; 
    using System.Collections.Generic;
 
    ///  
    /// Represents Row contructor expression
    ///  
    internal sealed class RowConstructorExpr : Expr
    {
        private ExprList _exprList;
 
        internal RowConstructorExpr( ExprList exprList )
        { 
            _exprList = exprList; 
        }
 
        /// 
        /// returns list of elements as alias expressions
        /// 
        internal ExprList AliasExprList 
        {
            get { return _exprList; } 
        } 

    } 


    /// 
    /// Represents multiset constructor expression. 
    /// 
    internal sealed class MultisetConstructorExpr : Expr 
    { 
        private ExprList _exprList;
 
        internal MultisetConstructorExpr( ExprList exprList )
        {
            _exprList = exprList;
        } 

        ///  
        /// returns list of elements as alias expressions 
        /// 
        internal ExprList ExprList 
        {
            get { return _exprList; }
        }
 
    }
 
} 

 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

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