Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ALinq / InputReferenceExpression.cs / 1305376 / InputReferenceExpression.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Respresents a reference to a resource set in a resource bound expression tree. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Diagnostics; using System.Linq.Expressions; ////// Represents a reference to a bound resource set in the resource path. /// The type of the input reference is the element type of the set. /// ////// Because the type of the input reference is the element type of the set, /// it can be used to indicate what a range variable ranges over. /// /// For example, in input.Select(b => b.id), 'input' is an IQueryable of T, /// and 'b' is a parameter of type T. 'b' can be rebound as an input reference /// to 'input' by the InputBinder, which helps in query analysis and /// translation. /// [DebuggerDisplay("InputReferenceExpression -> {Type}")] internal sealed class InputReferenceExpression : Expression { ///The resource or set referred to by this input reference expression private ResourceExpression target; ////// Constructs a new input reference expression that refers to the specified resource set /// /// The target resource set that the new expression will reference #pragma warning disable 618 internal InputReferenceExpression(ResourceExpression target) : base((ExpressionType)ResourceExpressionType.InputReference, target.ResourceType) { Debug.Assert(target != null, "Target resource set cannot be null"); this.target = target; } #pragma warning restore 618 ////// Retrieves the resource set referred to by this input reference expression /// internal ResourceExpression Target { get { return this.target; } } ////// Retargets this input reference to point to the resource set specified by /// The. /// that this input reference should use as its target internal void OverrideTarget(ResourceSetExpression newTarget) { Debug.Assert(newTarget != null, "Resource set cannot be null"); Debug.Assert(newTarget.ResourceType.Equals(this.Type), "Cannot reference a resource set with a different resource type"); this.target = newTarget; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // //// Respresents a reference to a resource set in a resource bound expression tree. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Diagnostics; using System.Linq.Expressions; ////// Represents a reference to a bound resource set in the resource path. /// The type of the input reference is the element type of the set. /// ////// Because the type of the input reference is the element type of the set, /// it can be used to indicate what a range variable ranges over. /// /// For example, in input.Select(b => b.id), 'input' is an IQueryable of T, /// and 'b' is a parameter of type T. 'b' can be rebound as an input reference /// to 'input' by the InputBinder, which helps in query analysis and /// translation. /// [DebuggerDisplay("InputReferenceExpression -> {Type}")] internal sealed class InputReferenceExpression : Expression { ///The resource or set referred to by this input reference expression private ResourceExpression target; ////// Constructs a new input reference expression that refers to the specified resource set /// /// The target resource set that the new expression will reference #pragma warning disable 618 internal InputReferenceExpression(ResourceExpression target) : base((ExpressionType)ResourceExpressionType.InputReference, target.ResourceType) { Debug.Assert(target != null, "Target resource set cannot be null"); this.target = target; } #pragma warning restore 618 ////// Retrieves the resource set referred to by this input reference expression /// internal ResourceExpression Target { get { return this.target; } } ////// Retargets this input reference to point to the resource set specified by /// The. /// that this input reference should use as its target internal void OverrideTarget(ResourceSetExpression newTarget) { Debug.Assert(newTarget != null, "Resource set cannot be null"); Debug.Assert(newTarget.ResourceType.Equals(this.Type), "Cannot reference a resource set with a different resource type"); this.target = newTarget; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ComponentSerializationService.cs
- CategoryAttribute.cs
- DataGridCheckBoxColumn.cs
- CodeDomSerializationProvider.cs
- QilName.cs
- SelectionRange.cs
- Events.cs
- SuppressIldasmAttribute.cs
- NodeInfo.cs
- Literal.cs
- SemanticBasicElement.cs
- ValueConversionAttribute.cs
- LogManagementAsyncResult.cs
- SessionParameter.cs
- TextMetrics.cs
- WizardStepBase.cs
- InternalsVisibleToAttribute.cs
- NativeBuffer.cs
- UnicodeEncoding.cs
- AnimationLayer.cs
- LayoutEngine.cs
- ConcurrentStack.cs
- GenerateTemporaryTargetAssembly.cs
- DbDataAdapter.cs
- TransportBindingElement.cs
- DateTimeConverter.cs
- ModelChangedEventArgsImpl.cs
- AsymmetricSecurityProtocolFactory.cs
- Brush.cs
- ParameterBinding.cs
- DateTimeConstantAttribute.cs
- SqlStatistics.cs
- SocketInformation.cs
- OleDbRowUpdatedEvent.cs
- CryptoHelper.cs
- RegexRunnerFactory.cs
- HelpEvent.cs
- TrackingRecord.cs
- FileVersionInfo.cs
- StateDesigner.Helpers.cs
- ConnectionsZone.cs
- SwitchLevelAttribute.cs
- Viewport3DAutomationPeer.cs
- GenericUriParser.cs
- CheckBoxAutomationPeer.cs
- CroppedBitmap.cs
- SystemEvents.cs
- ScriptReferenceEventArgs.cs
- SizeAnimation.cs
- MobileDeviceCapabilitiesSectionHandler.cs
- QueryStoreStatusRequest.cs
- HighlightVisual.cs
- DesignerInterfaces.cs
- AssemblyBuilder.cs
- LocalizableResourceBuilder.cs
- ValueSerializerAttribute.cs
- GlyphRunDrawing.cs
- DesignerRegion.cs
- FileCodeGroup.cs
- PropagationProtocolsTracing.cs
- SchemaManager.cs
- ResourceDisplayNameAttribute.cs
- DBSqlParserTable.cs
- SqlDataAdapter.cs
- ModelFunction.cs
- EntityModelSchemaGenerator.cs
- SchemaMapping.cs
- HttpProcessUtility.cs
- Property.cs
- DiscreteKeyFrames.cs
- DataRowCollection.cs
- CallbackException.cs
- DataGridViewRowPostPaintEventArgs.cs
- GridViewDeleteEventArgs.cs
- BaseParser.cs
- Int32Collection.cs
- querybuilder.cs
- DirectoryNotFoundException.cs
- RangeBase.cs
- Scene3D.cs
- CustomLineCap.cs
- ColorConverter.cs
- NavigatingCancelEventArgs.cs
- Metadata.cs
- UniqueID.cs
- ReliableChannelListener.cs
- InstanceLockLostException.cs
- SqlNamer.cs
- ValidatingCollection.cs
- XmlCharCheckingWriter.cs
- EnterpriseServicesHelper.cs
- CompilerState.cs
- UrlMapping.cs
- DataTableMapping.cs
- XmlILAnnotation.cs
- IPEndPointCollection.cs
- DataGridRowHeaderAutomationPeer.cs
- HtmlTableCellCollection.cs
- EndOfStreamException.cs
- Utils.cs