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
- ServiceModelExtensionCollectionElement.cs
- Size3DConverter.cs
- Avt.cs
- XmlArrayItemAttributes.cs
- HyperLink.cs
- LocalizationComments.cs
- DiagnosticTraceSource.cs
- Shared.cs
- CodeIdentifier.cs
- SymLanguageType.cs
- SamlConditions.cs
- ProxySimple.cs
- TakeQueryOptionExpression.cs
- IIS7WorkerRequest.cs
- MemberDomainMap.cs
- WindowsContainer.cs
- XamlTemplateSerializer.cs
- PrinterUnitConvert.cs
- EntitySqlException.cs
- DesigntimeLicenseContextSerializer.cs
- CompilerGeneratedAttribute.cs
- ServiceCredentialsElement.cs
- InvalidPrinterException.cs
- Single.cs
- MemberRelationshipService.cs
- BitmapEffect.cs
- TemplateComponentConnector.cs
- DependencyPropertyConverter.cs
- TagMapInfo.cs
- ResourceManagerWrapper.cs
- altserialization.cs
- CharUnicodeInfo.cs
- SerializationEventsCache.cs
- ClientBuildManagerCallback.cs
- TextElementAutomationPeer.cs
- ToolStripOverflow.cs
- SqlUnionizer.cs
- AllMembershipCondition.cs
- StrongNameUtility.cs
- AuthenticationModuleElementCollection.cs
- VisualProxy.cs
- SyndicationElementExtensionCollection.cs
- DateTimeParse.cs
- X509UI.cs
- Color.cs
- FixedStringLookup.cs
- BaseTemplateParser.cs
- Storyboard.cs
- ListBox.cs
- StateFinalizationDesigner.cs
- DBPropSet.cs
- SqlCacheDependency.cs
- BaseCollection.cs
- documentsequencetextpointer.cs
- CompleteWizardStep.cs
- JsonFormatReaderGenerator.cs
- connectionpool.cs
- UdpDiscoveryEndpointElement.cs
- TextParaLineResult.cs
- ContentFilePart.cs
- MultipartContentParser.cs
- _SslStream.cs
- CriticalExceptions.cs
- TextCollapsingProperties.cs
- FilterQuery.cs
- PointCollectionConverter.cs
- AssemblyBuilderData.cs
- TableRow.cs
- VisemeEventArgs.cs
- WorkerProcess.cs
- ErrorsHelper.cs
- Int16AnimationUsingKeyFrames.cs
- XmlSchemaCompilationSettings.cs
- XmlHierarchyData.cs
- OdbcCommandBuilder.cs
- OleAutBinder.cs
- sqlstateclientmanager.cs
- GridViewUpdatedEventArgs.cs
- PersonalizationStateInfoCollection.cs
- SafeEventLogWriteHandle.cs
- LogicalChannelCollection.cs
- WebPartVerb.cs
- TreeWalkHelper.cs
- TypedTableBase.cs
- TypeResolver.cs
- RegexWriter.cs
- UrlPath.cs
- FontUnit.cs
- SqlEnums.cs
- SeparatorAutomationPeer.cs
- FixedSOMContainer.cs
- AttachInfo.cs
- Win32.cs
- BStrWrapper.cs
- PropertyNames.cs
- ContainerParaClient.cs
- FormattedText.cs
- EndpointIdentity.cs
- SchemaNamespaceManager.cs
- DiagnosticTrace.cs