LinqDataSourceSelectEventArgs.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 / xsp / System / Extensions / UI / WebControls / LinqDataSourceSelectEventArgs.cs / 1305376 / LinqDataSourceSelectEventArgs.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

#if ORYX_VNEXT 
namespace Microsoft.Web.Data.UI.WebControls { 
    using System.Web.UI;
#else 
namespace System.Web.UI.WebControls {
#endif
    using System;
    using System.Collections.Generic; 
    using System.Collections.Specialized;
    using System.ComponentModel; 
    using System.Diagnostics.CodeAnalysis; 

    public class LinqDataSourceSelectEventArgs : CancelEventArgs { 

        private DataSourceSelectArguments _arguments;
        private IDictionary _groupByParameters;
        private IOrderedDictionary _orderByParameters; 
        private IDictionary _orderGroupsByParameters;
        private object _result; 
        private IDictionary _selectParameters; 
        private IDictionary _whereParameters;
 
        public LinqDataSourceSelectEventArgs(DataSourceSelectArguments arguments,
                IDictionary whereParameters, IOrderedDictionary orderByParameters,
                IDictionary groupByParameters, IDictionary orderGroupsByParameters,
                IDictionary selectParameters) { 
            _arguments = arguments;
            _groupByParameters = groupByParameters; 
            _orderByParameters = orderByParameters; 
            _orderGroupsByParameters = orderGroupsByParameters;
            _selectParameters = selectParameters; 
            _whereParameters = whereParameters;
        }

        public DataSourceSelectArguments Arguments { 
            get {
                return _arguments; 
            } 
        }
 
        public IDictionary GroupByParameters {
            get {
                return _groupByParameters;
            } 
        }
 
        public IOrderedDictionary OrderByParameters { 
            get {
                return _orderByParameters; 
            }
        }

        public IDictionary OrderGroupsByParameters { 
            get {
                return _orderGroupsByParameters; 
            } 
        }
 
        public object Result {
            get {
                return _result;
            } 
            set {
                _result = value; 
            } 
        }
 
        public IDictionary SelectParameters {
            get {
                return _selectParameters;
            } 
        }
 
        public IDictionary WhereParameters { 
            get {
                return _whereParameters; 
            }
        }

    } 
}
 

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