Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / xsp / System / Web / Extensions / ui / webcontrols / LinqDataSourceSelectEventArgs.cs / 1 / 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.
//
//-----------------------------------------------------------------------------
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ServicePointManager.cs
- ReachDocumentPageSerializer.cs
- PersistenceException.cs
- PointLightBase.cs
- ContentFilePart.cs
- SafeRegistryKey.cs
- ListViewHitTestInfo.cs
- CollectionsUtil.cs
- SortFieldComparer.cs
- PropertyGridEditorPart.cs
- DefaultPropertyAttribute.cs
- Separator.cs
- DbParameterCollectionHelper.cs
- SqlStatistics.cs
- RenderTargetBitmap.cs
- MultiView.cs
- PathSegment.cs
- BamlLocalizer.cs
- BitmapEffect.cs
- HandlerWithFactory.cs
- ModelFunctionTypeElement.cs
- XPathDocument.cs
- PackageStore.cs
- PopupEventArgs.cs
- SecurityCapabilities.cs
- HTMLTagNameToTypeMapper.cs
- XmlSchemaComplexType.cs
- IndexingContentUnit.cs
- QuaternionAnimation.cs
- TableItemStyle.cs
- StrongNameIdentityPermission.cs
- CodeIndexerExpression.cs
- DictionaryBase.cs
- WriteFileContext.cs
- GPStream.cs
- MouseGestureValueSerializer.cs
- TimelineGroup.cs
- wmiutil.cs
- OdbcEnvironmentHandle.cs
- StopStoryboard.cs
- AnnotationAdorner.cs
- DesignerUtility.cs
- AddingNewEventArgs.cs
- Code.cs
- CancelEventArgs.cs
- LoadedOrUnloadedOperation.cs
- SqlXmlStorage.cs
- GetPageNumberCompletedEventArgs.cs
- OracleTimeSpan.cs
- TypeDefinition.cs
- DataGridViewComboBoxEditingControl.cs
- BufferedResponseStream.cs
- OLEDB_Enum.cs
- ExpressionLink.cs
- PackUriHelper.cs
- FactoryMaker.cs
- HttpServerVarsCollection.cs
- FileClassifier.cs
- ScrollProviderWrapper.cs
- WorkflowInstanceExtensionCollection.cs
- XmlAnyElementAttribute.cs
- CharacterHit.cs
- HtmlTextArea.cs
- BufferedWebEventProvider.cs
- MenuStrip.cs
- Propagator.cs
- ConfigXmlReader.cs
- XmlChoiceIdentifierAttribute.cs
- OleDbError.cs
- Compiler.cs
- ContentElement.cs
- ManipulationDevice.cs
- DBBindings.cs
- ExpressionNode.cs
- XmlSerializerNamespaces.cs
- QilStrConcatenator.cs
- SamlAssertionKeyIdentifierClause.cs
- ResXResourceSet.cs
- ValidateNames.cs
- CornerRadiusConverter.cs
- WindowsGrip.cs
- NullableLongSumAggregationOperator.cs
- ShapingEngine.cs
- BasicKeyConstraint.cs
- XmlSequenceWriter.cs
- CacheChildrenQuery.cs
- TabItemAutomationPeer.cs
- ProxyWebPart.cs
- WindowsPen.cs
- SafeRightsManagementPubHandle.cs
- Window.cs
- NotifyParentPropertyAttribute.cs
- ParameterModifier.cs
- Cell.cs
- ObjectQuery_EntitySqlExtensions.cs
- RoutedEventArgs.cs
- TargetFrameworkAttribute.cs
- FormViewModeEventArgs.cs
- CompilationSection.cs
- SoapObjectInfo.cs