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
- RequestContext.cs
- BackStopAuthenticationModule.cs
- AlphaSortedEnumConverter.cs
- Attachment.cs
- RegistryKey.cs
- DesignerView.cs
- WinFormsSecurity.cs
- _SslStream.cs
- DBConcurrencyException.cs
- COM2ColorConverter.cs
- WebPartsSection.cs
- ListSortDescription.cs
- _SslSessionsCache.cs
- Bold.cs
- SchemaImporterExtension.cs
- entityreference_tresulttype.cs
- TraceHandler.cs
- DesignConnection.cs
- TitleStyle.cs
- WeakReadOnlyCollection.cs
- SchemaElement.cs
- PageAdapter.cs
- CanExecuteRoutedEventArgs.cs
- DataGridViewRowConverter.cs
- DeferredTextReference.cs
- FileVersionInfo.cs
- PerformanceCounterPermissionEntry.cs
- PathParser.cs
- PropertyInformation.cs
- DetailsViewInsertedEventArgs.cs
- PeerCustomResolverBindingElement.cs
- HtmlMeta.cs
- GeometryHitTestParameters.cs
- SqlVersion.cs
- AnnotationAuthorChangedEventArgs.cs
- EventProviderTraceListener.cs
- UIHelper.cs
- FilteredReadOnlyMetadataCollection.cs
- Rect3DConverter.cs
- LocalBuilder.cs
- LightweightCodeGenerator.cs
- SortAction.cs
- GraphicsState.cs
- CompositeDataBoundControl.cs
- AmbientProperties.cs
- WebPartCatalogAddVerb.cs
- FontFamily.cs
- JsonReaderWriterFactory.cs
- HttpProfileGroupBase.cs
- SystemThemeKey.cs
- TransactionFlowOption.cs
- ToolStripPanelCell.cs
- ComponentResourceKey.cs
- Executor.cs
- ValueType.cs
- ISAPIRuntime.cs
- ProcessModelSection.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- StateDesigner.LayoutSelectionGlyph.cs
- GridErrorDlg.cs
- ToolStripDropDownButton.cs
- ImpersonateTokenRef.cs
- DataServiceContext.cs
- SqlCommandSet.cs
- BaseValidatorDesigner.cs
- PasswordRecovery.cs
- AttributeCollection.cs
- BaseDataList.cs
- HttpHandlerActionCollection.cs
- hebrewshape.cs
- EntityStoreSchemaFilterEntry.cs
- Focus.cs
- PeerObject.cs
- DuplexSecurityProtocolFactory.cs
- LambdaCompiler.Binary.cs
- OdbcStatementHandle.cs
- _AutoWebProxyScriptHelper.cs
- AsymmetricSignatureFormatter.cs
- InternalDispatchObject.cs
- SessionStateSection.cs
- WebPartVerbCollection.cs
- X509UI.cs
- HtmlButton.cs
- TdsValueSetter.cs
- TreeNodeBindingCollection.cs
- SourceSwitch.cs
- View.cs
- ProfileSettingsCollection.cs
- CodeVariableReferenceExpression.cs
- SecurityRuntime.cs
- SafeFileMappingHandle.cs
- ExtensionFile.cs
- SimplePropertyEntry.cs
- Grammar.cs
- XmlKeywords.cs
- HtmlTernaryTree.cs
- ProgressBarRenderer.cs
- OptimalBreakSession.cs
- QueueNameHelper.cs
- DataControlFieldsEditor.cs