QueryOptionExpression.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 / DataWeb / Client / System / Data / Services / Client / ALinq / QueryOptionExpression.cs / 1305376 / QueryOptionExpression.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//  
//      Respresents a query option in resource bound expression tree.
//  
// 
// @owner  [....]
//--------------------------------------------------------------------- 
namespace System.Data.Services.Client
{
    using System;
    using System.Diagnostics; 
    using System.Linq.Expressions;
 
    ///  
    /// An resource specific expression representing a query option.
    ///  
    internal abstract class QueryOptionExpression : Expression
    {
        /// 
        /// Creates a QueryOptionExpression expression 
        /// 
        /// expression node type 
        /// the return type of the expression 
#pragma warning disable 618
        internal QueryOptionExpression(ExpressionType nodeType, Type type) : base(nodeType, type) 
        {
        }
#pragma warning restore 618
 
        /// 
        /// Composes the  expression with this one when it's specified multiple times. 
        ///  
        ///  to compose.
        ///  
        /// The expression that results from composing the  expression with this one.
        /// 
        internal virtual QueryOptionExpression ComposeMultipleSpecification(QueryOptionExpression previous)
        { 
            Debug.Assert(previous != null, "other != null");
            Debug.Assert(previous.GetType() == this.GetType(), "other.GetType == this.GetType() -- otherwise it's not the same specification"); 
            return this; 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//  
//      Respresents a query option in resource bound expression tree.
//  
// 
// @owner  [....]
//--------------------------------------------------------------------- 
namespace System.Data.Services.Client
{
    using System;
    using System.Diagnostics; 
    using System.Linq.Expressions;
 
    ///  
    /// An resource specific expression representing a query option.
    ///  
    internal abstract class QueryOptionExpression : Expression
    {
        /// 
        /// Creates a QueryOptionExpression expression 
        /// 
        /// expression node type 
        /// the return type of the expression 
#pragma warning disable 618
        internal QueryOptionExpression(ExpressionType nodeType, Type type) : base(nodeType, type) 
        {
        }
#pragma warning restore 618
 
        /// 
        /// Composes the  expression with this one when it's specified multiple times. 
        ///  
        ///  to compose.
        ///  
        /// The expression that results from composing the  expression with this one.
        /// 
        internal virtual QueryOptionExpression ComposeMultipleSpecification(QueryOptionExpression previous)
        { 
            Debug.Assert(previous != null, "other != null");
            Debug.Assert(previous.GetType() == this.GetType(), "other.GetType == this.GetType() -- otherwise it's not the same specification"); 
            return this; 
        }
    } 
}

// 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