Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ALinq / TakeQueryOptionExpression.cs / 2 / 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. /// // 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
- DocumentViewerBaseAutomationPeer.cs
- DoubleLinkList.cs
- TableLayoutColumnStyleCollection.cs
- RectAnimation.cs
- InheritanceRules.cs
- InternalCompensate.cs
- XmlException.cs
- FastEncoderStatics.cs
- ImageDrawing.cs
- ErrorCodes.cs
- WhereQueryOperator.cs
- WindowShowOrOpenTracker.cs
- TextTreeObjectNode.cs
- PreProcessor.cs
- XmlCharacterData.cs
- ServiceNameCollection.cs
- InputMethod.cs
- TypeLibConverter.cs
- ApplicationDirectoryMembershipCondition.cs
- ObfuscationAttribute.cs
- PkcsUtils.cs
- SByteConverter.cs
- ChtmlSelectionListAdapter.cs
- NameValueSectionHandler.cs
- ConfigurationFileMap.cs
- ImageSourceValueSerializer.cs
- UnsafeNativeMethods.cs
- DynamicExpression.cs
- QfeChecker.cs
- SamlAdvice.cs
- SspiNegotiationTokenAuthenticatorState.cs
- ScrollEventArgs.cs
- GeneralTransformGroup.cs
- PixelShader.cs
- FontSource.cs
- WizardStepBase.cs
- DBSqlParserColumn.cs
- SafeFileMapViewHandle.cs
- ContainerUIElement3D.cs
- NavigateEvent.cs
- ConditionCollection.cs
- arclist.cs
- XmlValidatingReaderImpl.cs
- HttpListenerElement.cs
- ReferentialConstraint.cs
- ToggleButtonAutomationPeer.cs
- FlatButtonAppearance.cs
- SynchronizedDispatch.cs
- RuntimeHandles.cs
- GiveFeedbackEvent.cs
- ProcessProtocolHandler.cs
- SerializationObjectManager.cs
- DetailsViewInsertEventArgs.cs
- SecurityException.cs
- WSSecurityPolicy.cs
- ResXResourceReader.cs
- MaterialGroup.cs
- ItemMap.cs
- SettingsAttributes.cs
- TcpHostedTransportConfiguration.cs
- AccessibleObject.cs
- QueryExpr.cs
- PieceNameHelper.cs
- KeyNotFoundException.cs
- XmlSchemaFacet.cs
- MediaTimeline.cs
- NavigationHelper.cs
- InputMethod.cs
- WebPartUserCapability.cs
- WebServiceClientProxyGenerator.cs
- DataObjectAttribute.cs
- WindowsListViewItem.cs
- ParameterReplacerVisitor.cs
- SerialReceived.cs
- GPStream.cs
- ConfigUtil.cs
- SamlAuthorityBinding.cs
- ObjectDataSourceStatusEventArgs.cs
- SmtpException.cs
- RenderDataDrawingContext.cs
- TokenBasedSet.cs
- Point4D.cs
- Processor.cs
- X509Utils.cs
- DebugControllerThread.cs
- DesignerWebPartChrome.cs
- ReaderContextStackData.cs
- TypeFieldSchema.cs
- KeyProperty.cs
- RuleElement.cs
- SettingsPropertyIsReadOnlyException.cs
- StateRuntime.cs
- ChtmlLinkAdapter.cs
- ExceptionUtil.cs
- StylusPointPropertyUnit.cs
- XmlEventCache.cs
- XPathNodeIterator.cs
- DateTimeOffsetAdapter.cs
- ListBase.cs
- Translator.cs