OrderingInfo.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Server / System / Data / Services / Providers / OrderingInfo.cs / 1407647 / OrderingInfo.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//  
//      Describes ordering information for each expanded entity set
//      for $expands request for a WCF Data Service. 
//  
//
// @owner  [....] 
//---------------------------------------------------------------------

namespace System.Data.Services.Providers
{ 
    #region Namespaces
    using System.Collections.Generic; 
    using System.Collections.ObjectModel; 

    #endregion 

    /// 
    /// Describes ordering information for each entity set
    /// for $expand request for a WCF Data Service. 
    /// 
    internal sealed class OrderingInfo 
    { 
        /// Is the expanded entity set paged
        private readonly bool paged; 

        /// Collection of ordering expressions
        private readonly List orderingExpressions;
 
        /// Constructor
        /// Whether top level entity set is paged 
        internal OrderingInfo(bool paged) 
        {
            this.paged = paged; 
            this.orderingExpressions = new List();
        }

        /// Is the expaded entity set paged 
        public bool IsPaged
        { 
            get 
            {
                return this.paged; 
            }
        }

        /// Gives the collection of ordering expressions for a request 
        public ReadOnlyCollection OrderingExpressions
        { 
            get 
            {
                return this.orderingExpressions.AsReadOnly(); 
            }
        }

        /// Adds a single OrderingExpression to the collection 
        /// Ordering expression to add
        internal void Add(OrderingExpression orderingExpression) 
        { 
            this.orderingExpressions.Add(orderingExpression);
        } 
    }
}

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