Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ALinq / InputReferenceExpression.cs / 2 / 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
- SequenceRange.cs
- Int16Converter.cs
- HostAdapter.cs
- HttpDigestClientCredential.cs
- SslSecurityTokenParameters.cs
- XamlReaderHelper.cs
- AngleUtil.cs
- DescriptionAttribute.cs
- DeadLetterQueue.cs
- MailMessageEventArgs.cs
- Membership.cs
- TaskFileService.cs
- ColumnProvider.cs
- PassportAuthentication.cs
- DetailsView.cs
- MemberProjectionIndex.cs
- EnumConverter.cs
- UpdateException.cs
- HyperLink.cs
- TreeBuilder.cs
- TabletDeviceInfo.cs
- CultureInfoConverter.cs
- BoundingRectTracker.cs
- SqlDependencyListener.cs
- ParentControlDesigner.cs
- XmlJsonReader.cs
- DictionaryEntry.cs
- IsolationInterop.cs
- OleDbParameter.cs
- HttpClientProtocol.cs
- GlyphCache.cs
- DataGridViewRowCancelEventArgs.cs
- SystemBrushes.cs
- DocumentViewerConstants.cs
- InvalidContentTypeException.cs
- CanonicalXml.cs
- UnmanagedHandle.cs
- SimpleWorkerRequest.cs
- CodeExpressionRuleDeclaration.cs
- RepeatInfo.cs
- ItemCollection.cs
- Camera.cs
- WsdlWriter.cs
- ChildTable.cs
- RtfControlWordInfo.cs
- AtomicFile.cs
- ListControlDataBindingHandler.cs
- AnimationClockResource.cs
- ProfileSection.cs
- Transform.cs
- DataSourceGroupCollection.cs
- DataGridTable.cs
- DependencyObjectProvider.cs
- PasswordDeriveBytes.cs
- DefaultProxySection.cs
- RoutedEvent.cs
- BrowserCapabilitiesCompiler.cs
- CollectionViewGroupRoot.cs
- UnmanagedMemoryStreamWrapper.cs
- AuthorizationRule.cs
- ImportContext.cs
- CanExecuteRoutedEventArgs.cs
- AudioFormatConverter.cs
- COM2PropertyDescriptor.cs
- BitmapSource.cs
- ParameterDataSourceExpression.cs
- RightsManagementPermission.cs
- DataObjectPastingEventArgs.cs
- TransportSecurityProtocolFactory.cs
- FtpRequestCacheValidator.cs
- BitmapImage.cs
- SqlLiftWhereClauses.cs
- _AuthenticationState.cs
- ArrayExtension.cs
- QuestionEventArgs.cs
- SchemeSettingElement.cs
- SmiEventSink.cs
- TextParagraphProperties.cs
- MappingException.cs
- TaiwanLunisolarCalendar.cs
- ExpandoClass.cs
- BaseValidatorDesigner.cs
- ListBoxAutomationPeer.cs
- DiagnosticsConfigurationHandler.cs
- CloudCollection.cs
- MessageSmuggler.cs
- SystemTcpConnection.cs
- DSACryptoServiceProvider.cs
- StringAttributeCollection.cs
- Missing.cs
- ITextView.cs
- ScrollProperties.cs
- DesignerCategoryAttribute.cs
- BinaryFormatter.cs
- PeerResolverBindingElement.cs
- XPathMessageFilterElementComparer.cs
- QilScopedVisitor.cs
- FormatSettings.cs
- TypeConstant.cs
- AutomationPeer.cs