Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ALinq / TakeQueryOptionExpression.cs / 1305376 / TakeQueryOptionExpression.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Respresents a take 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 take query option. /// [DebuggerDisplay("TakeQueryOptionExpression {TakeAmount}")] internal class TakeQueryOptionExpression : QueryOptionExpression { ///amount to skip private ConstantExpression takeAmount; ////// Creates a TakeQueryOption expression /// /// the return type of the expression /// the query option value internal TakeQueryOptionExpression(Type type, ConstantExpression takeAmount) : base((ExpressionType)ResourceExpressionType.TakeQueryOption, type) { this.takeAmount = takeAmount; } ////// query option value /// internal ConstantExpression TakeAmount { get { return this.takeAmount; } } ////// 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.takeAmount != null, "this.takeAmount != null"); Debug.Assert( this.takeAmount.Type == typeof(int), "this.takeAmount.Type == typeof(int) -- otherwise it wouldn't have matched the Enumerable.Take(source, int count) signature"); int thisValue = (int)this.takeAmount.Value; int previousValue = (int)((TakeQueryOptionExpression)previous).takeAmount.Value; return (thisValue < previousValue) ? this : previous; } } } // 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
- CryptoApi.cs
- PointAnimationBase.cs
- AsyncStreamReader.cs
- SqlConnectionPoolProviderInfo.cs
- PerfCounterSection.cs
- ListBindableAttribute.cs
- PackageDigitalSignature.cs
- TemplateBindingExpression.cs
- PropertySourceInfo.cs
- OneOfTypeConst.cs
- ConfigPathUtility.cs
- PingReply.cs
- ChtmlSelectionListAdapter.cs
- ScrollBarRenderer.cs
- HttpHandlerAction.cs
- CancelEventArgs.cs
- FigureParagraph.cs
- AssemblyAttributes.cs
- XmlAttributeProperties.cs
- BamlWriter.cs
- RightNameExpirationInfoPair.cs
- SelectedDatesCollection.cs
- RightsManagementInformation.cs
- LineSegment.cs
- FrameworkContentElementAutomationPeer.cs
- Encoding.cs
- baseaxisquery.cs
- LostFocusEventManager.cs
- DecimalAnimationUsingKeyFrames.cs
- SchemaTableColumn.cs
- NativeMethods.cs
- DocumentPaginator.cs
- InvokeProviderWrapper.cs
- PerfCounters.cs
- MILUtilities.cs
- Literal.cs
- FormViewUpdatedEventArgs.cs
- SerializationException.cs
- StylusPlugInCollection.cs
- Serialization.cs
- ComboBoxRenderer.cs
- SymbolMethod.cs
- TransactionFlowOption.cs
- DataGridViewTextBoxCell.cs
- StringSorter.cs
- DashStyle.cs
- Exceptions.cs
- CreateRefExpr.cs
- NativeDirectoryServicesQueryAPIs.cs
- BindStream.cs
- Task.cs
- ViewStateException.cs
- ProxyWebPart.cs
- ExpandableObjectConverter.cs
- HideDisabledControlAdapter.cs
- SqlBulkCopyColumnMapping.cs
- StatusStrip.cs
- TableCellsCollectionEditor.cs
- CngKeyBlobFormat.cs
- ChangeBlockUndoRecord.cs
- BufferedStream.cs
- DependencyPropertyKind.cs
- AlphabeticalEnumConverter.cs
- TitleStyle.cs
- AutoResizedEvent.cs
- CodeCatchClause.cs
- CodeMemberProperty.cs
- MobileControl.cs
- IntSecurity.cs
- SortKey.cs
- MemoryResponseElement.cs
- DataStreams.cs
- CodeArrayIndexerExpression.cs
- ContainerUtilities.cs
- DataGridViewButtonCell.cs
- SqlExpressionNullability.cs
- Padding.cs
- XappLauncher.cs
- DataSourceView.cs
- BaseUriWithWildcard.cs
- BamlResourceContent.cs
- Scanner.cs
- SequentialWorkflowRootDesigner.cs
- Transform.cs
- DataSysAttribute.cs
- InputScopeConverter.cs
- StylusButton.cs
- CodeTypeParameterCollection.cs
- SiteMapPath.cs
- CodeGotoStatement.cs
- ProviderManager.cs
- HttpException.cs
- XmlSchemaObject.cs
- OptimisticConcurrencyException.cs
- GroupItem.cs
- SqlClientWrapperSmiStreamChars.cs
- ResourceManagerWrapper.cs
- SafeIUnknown.cs
- EntityKey.cs
- invalidudtexception.cs