Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- Int32CollectionValueSerializer.cs
- WebPartConnectionsCancelEventArgs.cs
- FilterException.cs
- XmlSchemaSequence.cs
- SqlWorkflowInstanceStoreLock.cs
- MetadataWorkspace.cs
- MessageHeaderDescriptionCollection.cs
- CompositeDataBoundControl.cs
- IdentityValidationException.cs
- Exceptions.cs
- SqlMethodTransformer.cs
- TabControl.cs
- XPathSelectionIterator.cs
- ConfigXmlWhitespace.cs
- OdbcConnectionFactory.cs
- AsynchronousChannel.cs
- XmlCustomFormatter.cs
- RelationshipType.cs
- BaseWebProxyFinder.cs
- Guid.cs
- UriTemplatePathSegment.cs
- OpenFileDialog.cs
- CheckBox.cs
- ConstraintManager.cs
- Stopwatch.cs
- SqlGatherConsumedAliases.cs
- DeploymentExceptionMapper.cs
- CodeMemberProperty.cs
- TraceListeners.cs
- CheckBoxRenderer.cs
- DataRowView.cs
- RecognizeCompletedEventArgs.cs
- ReferencedAssembly.cs
- EventMap.cs
- XmlRawWriterWrapper.cs
- HMACSHA384.cs
- FixedSOMTableRow.cs
- WebPartConnectionCollection.cs
- pingexception.cs
- XPathDocumentIterator.cs
- CachedRequestParams.cs
- OdbcInfoMessageEvent.cs
- RepeaterItem.cs
- HttpCacheParams.cs
- IOException.cs
- QueryResponse.cs
- TdsParser.cs
- WebColorConverter.cs
- ObjectHandle.cs
- ReliableChannelListener.cs
- ReadOnlyHierarchicalDataSource.cs
- XsltOutput.cs
- WindowsStreamSecurityElement.cs
- XmlSchemaAll.cs
- InternalBase.cs
- InputMethodStateChangeEventArgs.cs
- CanonicalFontFamilyReference.cs
- LicenseManager.cs
- entitydatasourceentitysetnameconverter.cs
- AppLevelCompilationSectionCache.cs
- GridViewCommandEventArgs.cs
- RepeaterDataBoundAdapter.cs
- Directory.cs
- X509CertificateCollection.cs
- DelegateSerializationHolder.cs
- SqlVisitor.cs
- NavigationCommands.cs
- KeyValuePair.cs
- ApplicationException.cs
- TransportSecurityBindingElement.cs
- SqlUtil.cs
- Clock.cs
- SelectorItemAutomationPeer.cs
- XmlAttribute.cs
- SqlDataSourceQueryEditor.cs
- BindingCompleteEventArgs.cs
- Attribute.cs
- TileBrush.cs
- XamlValidatingReader.cs
- CapabilitiesState.cs
- OletxVolatileEnlistment.cs
- ZipFileInfoCollection.cs
- SerTrace.cs
- Random.cs
- ToolStripStatusLabel.cs
- DbParameterHelper.cs
- OptimizerPatterns.cs
- ComponentCollection.cs
- ProvidePropertyAttribute.cs
- CheckBoxStandardAdapter.cs
- ExclusiveCanonicalizationTransform.cs
- HitTestResult.cs
- Single.cs
- SoapFault.cs
- CodeMethodReturnStatement.cs
- StringConcat.cs
- RankException.cs
- NullableBoolConverter.cs
- DecoratedNameAttribute.cs
- OleDbParameter.cs