Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ALinq / InputReferenceExpression.cs / 1 / 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.Linq.Expressions; using System.Collections.Generic; using System.Diagnostics; ////// Represents a reference to a bound resource set in the resource path /// 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 result type of this expression - must be the same as the element type of/// The target resource set that the new expression will reference internal InputReferenceExpression(Type inputElementType, ResourceExpression target) : base((ExpressionType)ResourceExpressionType.InputReference, inputElementType) { Debug.Assert(target != null, "Target resource set cannot be null"); Debug.Assert( inputElementType != null && ((target is NavigationPropertySingletonExpression) || inputElementType.Equals(((ResourceSetExpression)target).ResourceType)), "Invalid input element type"); this.target = target; } /// /// 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.Linq.Expressions; using System.Collections.Generic; using System.Diagnostics; ////// Represents a reference to a bound resource set in the resource path /// 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 result type of this expression - must be the same as the element type of/// The target resource set that the new expression will reference internal InputReferenceExpression(Type inputElementType, ResourceExpression target) : base((ExpressionType)ResourceExpressionType.InputReference, inputElementType) { Debug.Assert(target != null, "Target resource set cannot be null"); Debug.Assert( inputElementType != null && ((target is NavigationPropertySingletonExpression) || inputElementType.Equals(((ResourceSetExpression)target).ResourceType)), "Invalid input element type"); this.target = target; } /// /// 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
- ColorMatrix.cs
- ProcessModelSection.cs
- ControlCollection.cs
- DispatcherExceptionEventArgs.cs
- SynchronizingStream.cs
- RegexNode.cs
- OleDragDropHandler.cs
- IssuanceLicense.cs
- StoreItemCollection.cs
- CommandConverter.cs
- TcpChannelListener.cs
- SerializerWriterEventHandlers.cs
- ActiveXHost.cs
- SystemPens.cs
- CookieProtection.cs
- TemplateXamlParser.cs
- httpstaticobjectscollection.cs
- OleDbPropertySetGuid.cs
- RemotingConfiguration.cs
- basecomparevalidator.cs
- XhtmlBasicCalendarAdapter.cs
- TextMessageEncodingElement.cs
- CultureTableRecord.cs
- ConfigXmlText.cs
- DecimalAnimationUsingKeyFrames.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- XmlDocumentType.cs
- StylusSystemGestureEventArgs.cs
- VisualBrush.cs
- LaxModeSecurityHeaderElementInferenceEngine.cs
- DataGridLinkButton.cs
- Currency.cs
- Input.cs
- ExpressionBuilderCollection.cs
- GridViewCancelEditEventArgs.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- WebPartCatalogAddVerb.cs
- EncryptedPackage.cs
- TemplateBaseAction.cs
- UIElement.cs
- GB18030Encoding.cs
- xmlfixedPageInfo.cs
- DataControlCommands.cs
- SecureUICommand.cs
- TraceListeners.cs
- TypeInitializationException.cs
- ListViewItem.cs
- HttpResponse.cs
- EncryptedReference.cs
- XPathMultyIterator.cs
- ImageField.cs
- ExtensionFile.cs
- WpfPayload.cs
- ChameleonKey.cs
- DbModificationCommandTree.cs
- StateMachineWorkflow.cs
- MaskInputRejectedEventArgs.cs
- HyperLinkField.cs
- FormView.cs
- UniqueConstraint.cs
- HtmlContainerControl.cs
- SizeF.cs
- SystemColors.cs
- QilLiteral.cs
- StructureChangedEventArgs.cs
- VersionValidator.cs
- RoleManagerEventArgs.cs
- __ComObject.cs
- PEFileEvidenceFactory.cs
- Buffer.cs
- PropertyGridCommands.cs
- Animatable.cs
- DropDownButton.cs
- TraceSection.cs
- BooleanFacetDescriptionElement.cs
- Button.cs
- RegistryPermission.cs
- InstancePersistenceCommand.cs
- OuterGlowBitmapEffect.cs
- ExpressionServices.cs
- _Connection.cs
- _LazyAsyncResult.cs
- ResourceDescriptionAttribute.cs
- AncillaryOps.cs
- RangeBase.cs
- TextEncodedRawTextWriter.cs
- EnumDataContract.cs
- HttpCapabilitiesEvaluator.cs
- BaseHashHelper.cs
- ReaderContextStackData.cs
- InternalConfigHost.cs
- EdmRelationshipRoleAttribute.cs
- AppDomainAttributes.cs
- NetSectionGroup.cs
- ISFTagAndGuidCache.cs
- AsymmetricAlgorithm.cs
- _WebProxyDataBuilder.cs
- EastAsianLunisolarCalendar.cs
- LongPath.cs
- ConfigXmlCDataSection.cs