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
- MenuCommand.cs
- XmlDigitalSignatureProcessor.cs
- RowUpdatedEventArgs.cs
- MeasureData.cs
- PropertyDescriptor.cs
- StyleTypedPropertyAttribute.cs
- Material.cs
- ListViewSelectEventArgs.cs
- CompiledXpathExpr.cs
- RowToFieldTransformer.cs
- ImportOptions.cs
- NotImplementedException.cs
- Crc32.cs
- EditorReuseAttribute.cs
- ObservableDictionary.cs
- TraceUtils.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- ActiveXContainer.cs
- DirectionalLight.cs
- OneOf.cs
- BordersPage.cs
- TemporaryBitmapFile.cs
- SQLStringStorage.cs
- UniqueID.cs
- QuaternionConverter.cs
- XmlSchemaSimpleContentRestriction.cs
- ComboBox.cs
- VersionedStream.cs
- SelectionWordBreaker.cs
- AgileSafeNativeMemoryHandle.cs
- FullTrustAssembly.cs
- HandleCollector.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- TypeReference.cs
- Vector3DCollectionConverter.cs
- DesignerHierarchicalDataSourceView.cs
- EventArgs.cs
- SimpleWebHandlerParser.cs
- XAMLParseException.cs
- XmlSchemaValidator.cs
- SafeArrayTypeMismatchException.cs
- StrokeCollection.cs
- ToolStripDropDownMenu.cs
- BitmapEffectDrawingContent.cs
- ProfileGroupSettings.cs
- Point.cs
- PlanCompiler.cs
- DockEditor.cs
- DbDataAdapter.cs
- HttpPostServerProtocol.cs
- EncoderNLS.cs
- PartialCachingAttribute.cs
- UnconditionalPolicy.cs
- basecomparevalidator.cs
- WindowsSecurityToken.cs
- SocketPermission.cs
- CompareValidator.cs
- EncryptedKeyIdentifierClause.cs
- EventEntry.cs
- ControlBindingsCollection.cs
- bidPrivateBase.cs
- MethodRental.cs
- ChannelAcceptor.cs
- WorkBatch.cs
- StatusBarDrawItemEvent.cs
- SQLConvert.cs
- SimpleMailWebEventProvider.cs
- DesignerContextDescriptor.cs
- DataGridTextBoxColumn.cs
- Transform.cs
- Assert.cs
- SetterBase.cs
- ProxySimple.cs
- WindowInteractionStateTracker.cs
- SymmetricAlgorithm.cs
- CodeNamespace.cs
- XmlSecureResolver.cs
- DeflateInput.cs
- HandlerWithFactory.cs
- ChannelTerminatedException.cs
- InstanceLockedException.cs
- CodePropertyReferenceExpression.cs
- ReflectEventDescriptor.cs
- TraceInternal.cs
- Rules.cs
- Normalization.cs
- SoapProtocolImporter.cs
- AppDomainResourcePerfCounters.cs
- ObjectComplexPropertyMapping.cs
- DataGridViewCellStateChangedEventArgs.cs
- EditingCoordinator.cs
- ShutDownListener.cs
- TTSEngineProxy.cs
- DbConnectionInternal.cs
- EntitySqlQueryCacheEntry.cs
- NativeMethods.cs
- ZoneLinkButton.cs
- ConfigurationSectionGroupCollection.cs
- HotSpotCollection.cs
- CombinedGeometry.cs