Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / WebControls / Expressions / DataSourceExpressionCollection.cs / 1305376 / DataSourceExpressionCollection.cs
#if ORYX_VNEXT namespace Microsoft.Web.Data.UI.WebControls.Expressions { using System; #else namespace System.Web.UI.WebControls.Expressions { #endif using System.Collections; using System.Collections.ObjectModel; using System.Diagnostics.CodeAnalysis; using System.Web; using System.Web.UI; public class DataSourceExpressionCollection : StateManagedCollection { private IQueryableDataSource _dataSource; private static readonly Type[] knownTypes = new Type[] { typeof(SearchExpression), typeof(MethodExpression), typeof(OrderByExpression), typeof(RangeExpression), typeof(PropertyExpression), typeof(CustomExpression), }; public HttpContext Context { get; private set; } public Control Owner { get; private set; } public DataSourceExpression this[int index] { get { return (DataSourceExpression)((IList)this)[index]; } set { ((IList)this)[index] = value; } } // Allows for nested expression blocks to be initilaized after the fact internal void SetContext(Control owner, HttpContext context, IQueryableDataSource dataSource) { Owner = owner; Context = context; _dataSource = dataSource; foreach (DataSourceExpression expression in this) { expression.SetContext(owner, context, _dataSource); } } public void Add(DataSourceExpression expression) { ((IList)this).Add(expression); } protected override object CreateKnownType(int index) { switch (index) { case 0: return new SearchExpression(); case 1: return new MethodExpression(); case 2: return new OrderByExpression(); case 3: return new RangeExpression(); case 4: return new PropertyExpression(); case 5: return new CustomExpression(); default: throw new ArgumentOutOfRangeException("index"); } } public void CopyTo(DataSourceExpression[] expressionArray, int index) { base.CopyTo(expressionArray, index); } public void Contains(DataSourceExpression expression) { ((IList)this).Contains(expression); } protected override Type[] GetKnownTypes() { return knownTypes; } public int IndexOf(DataSourceExpression expression) { return ((IList)this).IndexOf(expression); } public void Insert(int index, DataSourceExpression expression) { ((IList)this).Insert(index, expression); } public void Remove(DataSourceExpression expression) { ((IList)this).Remove(expression); } public void RemoveAt(int index) { ((IList)this).RemoveAt(index); } protected override void SetDirtyObject(object o) { ((DataSourceExpression)o).SetDirty(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. #if ORYX_VNEXT namespace Microsoft.Web.Data.UI.WebControls.Expressions { using System; #else namespace System.Web.UI.WebControls.Expressions { #endif using System.Collections; using System.Collections.ObjectModel; using System.Diagnostics.CodeAnalysis; using System.Web; using System.Web.UI; public class DataSourceExpressionCollection : StateManagedCollection { private IQueryableDataSource _dataSource; private static readonly Type[] knownTypes = new Type[] { typeof(SearchExpression), typeof(MethodExpression), typeof(OrderByExpression), typeof(RangeExpression), typeof(PropertyExpression), typeof(CustomExpression), }; public HttpContext Context { get; private set; } public Control Owner { get; private set; } public DataSourceExpression this[int index] { get { return (DataSourceExpression)((IList)this)[index]; } set { ((IList)this)[index] = value; } } // Allows for nested expression blocks to be initilaized after the fact internal void SetContext(Control owner, HttpContext context, IQueryableDataSource dataSource) { Owner = owner; Context = context; _dataSource = dataSource; foreach (DataSourceExpression expression in this) { expression.SetContext(owner, context, _dataSource); } } public void Add(DataSourceExpression expression) { ((IList)this).Add(expression); } protected override object CreateKnownType(int index) { switch (index) { case 0: return new SearchExpression(); case 1: return new MethodExpression(); case 2: return new OrderByExpression(); case 3: return new RangeExpression(); case 4: return new PropertyExpression(); case 5: return new CustomExpression(); default: throw new ArgumentOutOfRangeException("index"); } } public void CopyTo(DataSourceExpression[] expressionArray, int index) { base.CopyTo(expressionArray, index); } public void Contains(DataSourceExpression expression) { ((IList)this).Contains(expression); } protected override Type[] GetKnownTypes() { return knownTypes; } public int IndexOf(DataSourceExpression expression) { return ((IList)this).IndexOf(expression); } public void Insert(int index, DataSourceExpression expression) { ((IList)this).Insert(index, expression); } public void Remove(DataSourceExpression expression) { ((IList)this).Remove(expression); } public void RemoveAt(int index) { ((IList)this).RemoveAt(index); } protected override void SetDirtyObject(object o) { ((DataSourceExpression)o).SetDirty(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OrderedDictionary.cs
- Collection.cs
- RemotingServices.cs
- dtdvalidator.cs
- HashSetDebugView.cs
- ConditionCollection.cs
- BitmapSource.cs
- ListManagerBindingsCollection.cs
- ContentValidator.cs
- BypassElementCollection.cs
- HttpPostLocalhostServerProtocol.cs
- DataTableReaderListener.cs
- NameTable.cs
- SecondaryViewProvider.cs
- ComboBox.cs
- PingOptions.cs
- OracleMonthSpan.cs
- documentsequencetextview.cs
- ComplusEndpointConfigContainer.cs
- __Error.cs
- CallSite.cs
- ClientSettings.cs
- XmlUnspecifiedAttribute.cs
- XmlSchemaSimpleContentExtension.cs
- ContainerSelectorBehavior.cs
- ModelFunctionTypeElement.cs
- _BaseOverlappedAsyncResult.cs
- SplitterCancelEvent.cs
- FlowDocument.cs
- DoubleLink.cs
- EllipseGeometry.cs
- SecurityTokenValidationException.cs
- DataContractAttribute.cs
- ViewCellSlot.cs
- NewArrayExpression.cs
- ReceiveActivityValidator.cs
- CharAnimationBase.cs
- SchemaTypeEmitter.cs
- CultureMapper.cs
- CodePropertyReferenceExpression.cs
- EntityClientCacheEntry.cs
- StateMachine.cs
- FileCodeGroup.cs
- DeclaredTypeValidator.cs
- DispatcherExceptionFilterEventArgs.cs
- XhtmlBasicLabelAdapter.cs
- ConfigXmlSignificantWhitespace.cs
- PerspectiveCamera.cs
- FilteredReadOnlyMetadataCollection.cs
- SectionInformation.cs
- DataSourceExpressionCollection.cs
- ConfigurationManagerInternal.cs
- ListViewInsertEventArgs.cs
- Formatter.cs
- EncryptedPackageFilter.cs
- IntPtr.cs
- ChangeTracker.cs
- GridViewUpdatedEventArgs.cs
- CollectionView.cs
- UrlMappingsSection.cs
- DependsOnAttribute.cs
- PrintDialog.cs
- ArcSegment.cs
- XmlSchemaFacet.cs
- AuthenticationService.cs
- CallSite.cs
- Attributes.cs
- SecurityTokenTypes.cs
- LayoutUtils.cs
- JsonEncodingStreamWrapper.cs
- ReliabilityContractAttribute.cs
- panel.cs
- Array.cs
- NullableIntMinMaxAggregationOperator.cs
- MatrixCamera.cs
- ReflectionHelper.cs
- HttpException.cs
- BitmapCodecInfoInternal.cs
- BindStream.cs
- TileModeValidation.cs
- ValidationError.cs
- ServerType.cs
- System.Data_BID.cs
- PropertyBuilder.cs
- XmlChoiceIdentifierAttribute.cs
- TogglePattern.cs
- DataGridPagerStyle.cs
- GifBitmapEncoder.cs
- _ChunkParse.cs
- ViewEventArgs.cs
- ComplexTypeEmitter.cs
- ExpandCollapseIsCheckedConverter.cs
- BitmapPalettes.cs
- QuaternionValueSerializer.cs
- EventWaitHandle.cs
- LinkUtilities.cs
- BinaryExpression.cs
- ProfileParameter.cs
- XmlHierarchicalEnumerable.cs
- HostingEnvironmentException.cs