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
- CookieProtection.cs
- Adorner.cs
- ACE.cs
- ProcessStartInfo.cs
- Base64Decoder.cs
- NativeMethods.cs
- PrePrepareMethodAttribute.cs
- BaseDataListComponentEditor.cs
- GetTokenRequest.cs
- PkcsUtils.cs
- Shared.cs
- SystemInformation.cs
- PhysicalAddress.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- Subtree.cs
- Drawing.cs
- ChannelManager.cs
- OdbcEnvironment.cs
- SqlBulkCopy.cs
- Int32AnimationBase.cs
- RenderData.cs
- MonikerHelper.cs
- XmlNodeChangedEventManager.cs
- SafeNativeMethods.cs
- Comparer.cs
- EditorPartCollection.cs
- CopyAttributesAction.cs
- Profiler.cs
- Action.cs
- ClientScriptManager.cs
- XPathDocumentIterator.cs
- DataSourceControl.cs
- UrlMappingsModule.cs
- Transform.cs
- TableAdapterManagerGenerator.cs
- ComponentManagerBroker.cs
- DocumentOrderQuery.cs
- CrossAppDomainChannel.cs
- DashStyle.cs
- ToolStripDropDownClosedEventArgs.cs
- CompilerScopeManager.cs
- WebPartConnectionsDisconnectVerb.cs
- DesignerOptions.cs
- Process.cs
- SAPIEngineTypes.cs
- SecurityContextSecurityToken.cs
- X509ImageLogo.cs
- PathSegment.cs
- DbCommandDefinition.cs
- PerformanceCounterLib.cs
- TemplateBindingExpression.cs
- TextElementEnumerator.cs
- JsonFormatGeneratorStatics.cs
- TextDecorationCollection.cs
- MultipleViewProviderWrapper.cs
- RegistrationServices.cs
- ReadOnlyHierarchicalDataSourceView.cs
- ToolStripDropDownClosedEventArgs.cs
- HttpProfileBase.cs
- XPathNodeIterator.cs
- DataGridViewColumnCollectionEditor.cs
- TdsParserStateObject.cs
- CompiledELinqQueryState.cs
- ConstraintStruct.cs
- SerializationAttributes.cs
- ApplicationInfo.cs
- UInt32Storage.cs
- AssemblyBuilder.cs
- _emptywebproxy.cs
- ConditionChanges.cs
- NullPackagingPolicy.cs
- WebPermission.cs
- HttpProtocolImporter.cs
- TypeConverterHelper.cs
- WebBrowserContainer.cs
- ZoomPercentageConverter.cs
- Exceptions.cs
- DatePicker.cs
- Point3DCollection.cs
- MsmqIntegrationMessagePool.cs
- ProfileModule.cs
- MailBnfHelper.cs
- PointAnimation.cs
- WebHttpBehavior.cs
- PositiveTimeSpanValidator.cs
- ObjectDataSourceView.cs
- ControlValuePropertyAttribute.cs
- SizeAnimationUsingKeyFrames.cs
- Pair.cs
- RemotingException.cs
- AnnotationResourceCollection.cs
- Ipv6Element.cs
- UnsafeNativeMethodsCLR.cs
- TextSegment.cs
- NumericUpDownAcceleration.cs
- OleDbCommandBuilder.cs
- GACIdentityPermission.cs
- AttributeUsageAttribute.cs
- SerializationSectionGroup.cs
- GregorianCalendar.cs