Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ALinq / SkipQueryOptionExpression.cs / 1 / SkipQueryOptionExpression.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Respresents a skip query option in resource bound expression tree. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Diagnostics; using System.Linq.Expressions; ////// An resource specific expression representing a skip query option. /// [DebuggerDisplay("SkipQueryOptionExpression {SkipAmount}")] internal class SkipQueryOptionExpression : QueryOptionExpression { ///amount to skip private ConstantExpression skipAmount; ////// Creates a SkipQueryOption expression /// /// the return type of the expression /// the query option value internal SkipQueryOptionExpression(Type type, ConstantExpression skipAmount) : base((ExpressionType)ResourceExpressionType.SkipQueryOption, type) { this.skipAmount = skipAmount; } ////// query option value /// internal ConstantExpression SkipAmount { get { return this.skipAmount; } } ////// Composes the ///expression with this one when it's specified multiple times. /// to compose. /// /// The expression that results from composing the internal override QueryOptionExpression ComposeMultipleSpecification(QueryOptionExpression previous) { Debug.Assert(previous != null, "other != null"); Debug.Assert(previous.GetType() == this.GetType(), "other.GetType == this.GetType() -- otherwise it's not the same specification"); Debug.Assert(this.skipAmount != null, "this.skipAmount != null"); Debug.Assert( this.skipAmount.Type == typeof(int), "this.skipAmount.Type == typeof(int) -- otherwise it wouldn't have matched the Enumerable.Skip(source, int count) signature"); int thisValue = (int)this.skipAmount.Value; int previousValue = (int)((SkipQueryOptionExpression)previous).skipAmount.Value; return new SkipQueryOptionExpression(this.Type, Expression.Constant(thisValue + previousValue, typeof(int))); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //expression with this one. /// // Copyright (c) Microsoft Corporation. All rights reserved. // //// Respresents a skip query option in resource bound expression tree. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Diagnostics; using System.Linq.Expressions; ////// An resource specific expression representing a skip query option. /// [DebuggerDisplay("SkipQueryOptionExpression {SkipAmount}")] internal class SkipQueryOptionExpression : QueryOptionExpression { ///amount to skip private ConstantExpression skipAmount; ////// Creates a SkipQueryOption expression /// /// the return type of the expression /// the query option value internal SkipQueryOptionExpression(Type type, ConstantExpression skipAmount) : base((ExpressionType)ResourceExpressionType.SkipQueryOption, type) { this.skipAmount = skipAmount; } ////// query option value /// internal ConstantExpression SkipAmount { get { return this.skipAmount; } } ////// Composes the ///expression with this one when it's specified multiple times. /// to compose. /// /// The expression that results from composing the internal override QueryOptionExpression ComposeMultipleSpecification(QueryOptionExpression previous) { Debug.Assert(previous != null, "other != null"); Debug.Assert(previous.GetType() == this.GetType(), "other.GetType == this.GetType() -- otherwise it's not the same specification"); Debug.Assert(this.skipAmount != null, "this.skipAmount != null"); Debug.Assert( this.skipAmount.Type == typeof(int), "this.skipAmount.Type == typeof(int) -- otherwise it wouldn't have matched the Enumerable.Skip(source, int count) signature"); int thisValue = (int)this.skipAmount.Value; int previousValue = (int)((SkipQueryOptionExpression)previous).skipAmount.Value; return new SkipQueryOptionExpression(this.Type, Expression.Constant(thisValue + previousValue, typeof(int))); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.expression with this one. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectDataSourceMethodEventArgs.cs
- XmlSchemaSimpleTypeRestriction.cs
- XmlDataImplementation.cs
- MarkupCompilePass1.cs
- SQLSingle.cs
- ButtonBase.cs
- AddDataControlFieldDialog.cs
- HandlerFactoryWrapper.cs
- ManualWorkflowSchedulerService.cs
- TextBoxLine.cs
- LicFileLicenseProvider.cs
- DesignerSerializationManager.cs
- GZipDecoder.cs
- BufferedReadStream.cs
- ImageList.cs
- PropertyCondition.cs
- QuaternionIndependentAnimationStorage.cs
- InkPresenter.cs
- StringBuilder.cs
- DefaultValueAttribute.cs
- WindowsScrollBarBits.cs
- SecurityCriticalDataForSet.cs
- TextTreeTextBlock.cs
- HostedTcpTransportManager.cs
- ResourceProperty.cs
- PenContexts.cs
- HTMLTagNameToTypeMapper.cs
- DEREncoding.cs
- SafeHandles.cs
- GroupBoxRenderer.cs
- XmlValueConverter.cs
- FrameAutomationPeer.cs
- LayoutDump.cs
- DataViewListener.cs
- OutputCacheProfile.cs
- PolicyManager.cs
- VBCodeProvider.cs
- AttributeCollection.cs
- SessionSymmetricTransportSecurityProtocolFactory.cs
- ReaderContextStackData.cs
- ApplicationServicesHostFactory.cs
- MSAAEventDispatcher.cs
- SelectedDatesCollection.cs
- GatewayIPAddressInformationCollection.cs
- Tracer.cs
- Viewport2DVisual3D.cs
- _SSPISessionCache.cs
- RegistrationServices.cs
- ViewKeyConstraint.cs
- WebControlAdapter.cs
- AsymmetricAlgorithm.cs
- NetMsmqSecurity.cs
- WindowShowOrOpenTracker.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- TextDecoration.cs
- MenuItemBinding.cs
- PagedDataSource.cs
- XmlBinaryWriter.cs
- ConfigurationLocationCollection.cs
- UserControlAutomationPeer.cs
- IImplicitResourceProvider.cs
- Int64.cs
- SByteConverter.cs
- Dump.cs
- PolyQuadraticBezierSegment.cs
- PropertyIDSet.cs
- WhileDesigner.cs
- ClosureBinding.cs
- XamlParser.cs
- LassoHelper.cs
- StrongNameKeyPair.cs
- AssemblyFilter.cs
- RightsManagementEncryptedStream.cs
- DecimalKeyFrameCollection.cs
- DataServiceHost.cs
- XmlSchemaDocumentation.cs
- ConditionedDesigner.cs
- Registry.cs
- WebEvents.cs
- DataAdapter.cs
- DetailsViewRow.cs
- MemberDescriptor.cs
- CompressStream.cs
- InvalidComObjectException.cs
- WorkflowServiceBuildProvider.cs
- DataSourceConverter.cs
- EventlogProvider.cs
- FileInfo.cs
- DisplayInformation.cs
- OdbcDataReader.cs
- SecurityState.cs
- StylusPointCollection.cs
- ContentAlignmentEditor.cs
- PagerStyle.cs
- SqlBulkCopyColumnMapping.cs
- Compiler.cs
- ImageConverter.cs
- PageAsyncTask.cs
- SymbolTable.cs
- DynamicQueryableWrapper.cs