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
- TextParagraphProperties.cs
- SoapIncludeAttribute.cs
- DirtyTextRange.cs
- ContextToken.cs
- HttpFileCollectionBase.cs
- ResXResourceWriter.cs
- DirectoryGroupQuery.cs
- XsltInput.cs
- HandleTable.cs
- PackUriHelper.cs
- VisualBrush.cs
- SafeNativeMethods.cs
- BitmapScalingModeValidation.cs
- VerticalConnector.xaml.cs
- IsolatedStorage.cs
- StyleXamlTreeBuilder.cs
- XsdCachingReader.cs
- ExceptionHandlers.cs
- PageAdapter.cs
- LineInfo.cs
- Bidi.cs
- XsltCompileContext.cs
- CaseStatement.cs
- AssemblyCollection.cs
- XmlSerializationReader.cs
- EDesignUtil.cs
- XmlFormatExtensionAttribute.cs
- ImageFormat.cs
- FrameworkTextComposition.cs
- ManagementScope.cs
- ToolStripManager.cs
- QueryNode.cs
- WebProxyScriptElement.cs
- ScriptHandlerFactory.cs
- EncryptedPackageFilter.cs
- CheckBoxAutomationPeer.cs
- DataGridRelationshipRow.cs
- DrawingAttributes.cs
- BinaryObjectWriter.cs
- HttpsChannelFactory.cs
- TreeNodeConverter.cs
- FontNamesConverter.cs
- UrlMapping.cs
- WebEventTraceProvider.cs
- DataContractSerializerSection.cs
- ReflectionTypeLoadException.cs
- UserControl.cs
- DynamicMetaObject.cs
- DoubleAnimationClockResource.cs
- LazyTextWriterCreator.cs
- ObjectToModelValueConverter.cs
- Visitors.cs
- ServiceX509SecurityTokenProvider.cs
- CustomBinding.cs
- DataGridTextBox.cs
- XmlHierarchicalDataSourceView.cs
- TextSerializer.cs
- ElementNotAvailableException.cs
- RectAnimationClockResource.cs
- ContractNamespaceAttribute.cs
- OptimalBreakSession.cs
- DataServiceStreamProviderWrapper.cs
- Ipv6Element.cs
- CacheOutputQuery.cs
- DataPagerCommandEventArgs.cs
- JsonReader.cs
- ParserExtension.cs
- AssemblyAttributes.cs
- XmlReturnReader.cs
- Encoder.cs
- FamilyCollection.cs
- IxmlLineInfo.cs
- AutomationAttributeInfo.cs
- HyperLink.cs
- SystemIPGlobalProperties.cs
- ZipIOExtraFieldElement.cs
- ObjectDataSourceDisposingEventArgs.cs
- Variant.cs
- SerializationInfo.cs
- ViewBase.cs
- SpotLight.cs
- CryptoApi.cs
- LogArchiveSnapshot.cs
- PointLightBase.cs
- RowType.cs
- XpsS0ValidatingLoader.cs
- GridViewRowEventArgs.cs
- SQLDouble.cs
- ToolStripContentPanel.cs
- MetricEntry.cs
- SoapExtensionStream.cs
- DesignerActionVerbList.cs
- KoreanLunisolarCalendar.cs
- XmlChildEnumerator.cs
- CallbackHandler.cs
- PersistChildrenAttribute.cs
- WsatProxy.cs
- WorkflowEnvironment.cs
- EntityProviderFactory.cs
- OleDbMetaDataFactory.cs