Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ALinq / QueryOptionExpression.cs / 1305376 / QueryOptionExpression.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Respresents a 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 query option. /// internal abstract class QueryOptionExpression : Expression { ////// Creates a QueryOptionExpression expression /// /// expression node type /// the return type of the expression #pragma warning disable 618 internal QueryOptionExpression(ExpressionType nodeType, Type type) : base(nodeType, type) { } #pragma warning restore 618 ////// Composes the ///expression with this one when it's specified multiple times. /// to compose. /// /// The expression that results from composing the internal virtual 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"); return this; } } } // 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
- ObjectListGeneralPage.cs
- ProtocolInformationReader.cs
- Int32Rect.cs
- OdbcErrorCollection.cs
- PluralizationService.cs
- ConfigurationValue.cs
- DataListDesigner.cs
- ParseChildrenAsPropertiesAttribute.cs
- EdgeModeValidation.cs
- SafeRightsManagementQueryHandle.cs
- SecurityElement.cs
- ComponentConverter.cs
- ConstraintEnumerator.cs
- HelpKeywordAttribute.cs
- HttpModule.cs
- BitmapEncoder.cs
- EditorResources.cs
- GridViewSortEventArgs.cs
- TypeNameConverter.cs
- DbParameterHelper.cs
- ToolStripProgressBar.cs
- EndOfStreamException.cs
- SevenBitStream.cs
- FormViewDeletedEventArgs.cs
- WebPartVerbsEventArgs.cs
- WebServicesSection.cs
- SiteMapNodeCollection.cs
- SqlTopReducer.cs
- GeneralTransform3DTo2D.cs
- DynamicDataExtensions.cs
- Path.cs
- SoapReflectionImporter.cs
- isolationinterop.cs
- SplashScreenNativeMethods.cs
- Span.cs
- KnownTypes.cs
- TimeZone.cs
- WindowsImpersonationContext.cs
- Control.cs
- ButtonBaseAutomationPeer.cs
- SiteOfOriginContainer.cs
- XsltInput.cs
- PreviewKeyDownEventArgs.cs
- DeviceSpecificDesigner.cs
- SignatureDescription.cs
- SmiMetaData.cs
- MemoryStream.cs
- ApplySecurityAndSendAsyncResult.cs
- DropShadowBitmapEffect.cs
- TraceRecord.cs
- StatusCommandUI.cs
- Wow64ConfigurationLoader.cs
- EntityDataSourceWizardForm.cs
- CodeLabeledStatement.cs
- ArgumentOutOfRangeException.cs
- KeyTimeConverter.cs
- FixedDocument.cs
- RelatedPropertyManager.cs
- SafeMemoryMappedFileHandle.cs
- InvalidateEvent.cs
- WorkflowOperationBehavior.cs
- DataPagerFieldItem.cs
- PropertyGridCommands.cs
- Variant.cs
- TextTreeUndo.cs
- PersonalizationStateQuery.cs
- PlatformCulture.cs
- VirtualizingStackPanel.cs
- SqlDelegatedTransaction.cs
- TextFormatterHost.cs
- XPathNodePointer.cs
- MultiView.cs
- InfoCardProofToken.cs
- DataDocumentXPathNavigator.cs
- UInt16.cs
- FillBehavior.cs
- FilePrompt.cs
- X509SecurityToken.cs
- SelectingProviderEventArgs.cs
- ListViewItemCollectionEditor.cs
- MessageAction.cs
- SqlDataSource.cs
- FormatSettings.cs
- Pointer.cs
- ContentOperations.cs
- ActivityInstance.cs
- shaper.cs
- RequestResizeEvent.cs
- PostBackOptions.cs
- HandlerMappingMemo.cs
- Stackframe.cs
- MediaEntryAttribute.cs
- XPathMultyIterator.cs
- RequestTimeoutManager.cs
- PagerSettings.cs
- StorageComplexPropertyMapping.cs
- UncommonField.cs
- PageContent.cs
- UIElementIsland.cs
- LayoutTable.cs