LinqDataSourceSelectEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ui / webcontrols / LinqDataSourceSelectEventArgs.cs / 2 / LinqDataSourceSelectEventArgs.cs

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

namespace System.Web.UI.WebControls { 
    using System; 
    using System.Collections.Generic;
    using System.Collections.Specialized; 
    using System.ComponentModel;
    using System.Diagnostics.CodeAnalysis;
    using System.Security.Permissions;
 
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
    [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)] 
    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.
// 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