Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ALinq / SkipQueryOptionExpression.cs / 1305376 / 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. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NonVisualControlAttribute.cs
- WriterOutput.cs
- ButtonAutomationPeer.cs
- hebrewshape.cs
- GlobalProxySelection.cs
- SqlCommandSet.cs
- ModelUIElement3D.cs
- ConfigXmlAttribute.cs
- AppSecurityManager.cs
- DataTablePropertyDescriptor.cs
- PropertyBuilder.cs
- RenderDataDrawingContext.cs
- ValueUnavailableException.cs
- FullTrustAssembly.cs
- WorkflowPersistenceService.cs
- BmpBitmapDecoder.cs
- WebPartEventArgs.cs
- BindingExpression.cs
- SerializationInfo.cs
- ManagementQuery.cs
- MarkupCompilePass1.cs
- SqlBulkCopyColumnMappingCollection.cs
- Size.cs
- HelpInfo.cs
- MemberAssignmentAnalysis.cs
- DynamicResourceExtensionConverter.cs
- DivideByZeroException.cs
- DrawingImage.cs
- IntegerFacetDescriptionElement.cs
- CodeSubDirectoriesCollection.cs
- Rules.cs
- BindingCompleteEventArgs.cs
- ListControlBoundActionList.cs
- CommonDialog.cs
- CommonDialog.cs
- EmptyEnumerable.cs
- MultiSelector.cs
- BackgroundWorker.cs
- GraphicsContext.cs
- NameValuePair.cs
- DesignerProperties.cs
- FileUtil.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- TextBox.cs
- AssociationTypeEmitter.cs
- SchemaExporter.cs
- ThrowHelper.cs
- ChtmlMobileTextWriter.cs
- EnumBuilder.cs
- XPathNode.cs
- AutomationElementCollection.cs
- PropertyValueUIItem.cs
- CodeCatchClauseCollection.cs
- HtmlWindowCollection.cs
- FileDialog.cs
- GlyphCache.cs
- ProxyElement.cs
- NotifyParentPropertyAttribute.cs
- ApplicationDirectoryMembershipCondition.cs
- WindowsTooltip.cs
- MetadataSection.cs
- DataObjectAttribute.cs
- TextEditorLists.cs
- ContextMarshalException.cs
- ScriptControlManager.cs
- AspNetSynchronizationContext.cs
- BinaryConverter.cs
- RuntimeConfigurationRecord.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- ResourceAttributes.cs
- X509Extension.cs
- AlphabeticalEnumConverter.cs
- PathSegment.cs
- MediaElementAutomationPeer.cs
- LinqDataSourceInsertEventArgs.cs
- ModelUIElement3D.cs
- DataSourceHelper.cs
- FaultReasonText.cs
- XmlChoiceIdentifierAttribute.cs
- EntityContainerAssociationSet.cs
- XmlTextReaderImpl.cs
- DataServiceBuildProvider.cs
- EntityExpressionVisitor.cs
- DataControlFieldHeaderCell.cs
- TransactionScopeDesigner.cs
- ContentElement.cs
- PropertySegmentSerializer.cs
- RepeaterItemCollection.cs
- DataGridViewRowEventArgs.cs
- SubclassTypeValidatorAttribute.cs
- CodeDOMUtility.cs
- TypeElementCollection.cs
- FileEnumerator.cs
- ResolveNextArgumentWorkItem.cs
- AppDomainGrammarProxy.cs
- BaseAutoFormat.cs
- UInt32Converter.cs
- SortedSet.cs
- XmlDocument.cs
- WebPartActionVerb.cs