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 / ParameterReplacerVisitor.cs / 1 / ParameterReplacerVisitor.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Provides an expression visitor that can replace a ParameterExpression. // // // @owner [....], [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Collections.Generic; using System.Linq.Expressions; using System.Diagnostics; ///Provides an expression visitor that can replace a internal class ParameterReplacerVisitor : ExpressionVisitor { ///. Expression to replace with. private Expression newExpression; ///Parameter to replace. private ParameterExpression oldParameter; ///Initializes a new /// Parameter to replace. /// Expression to replace with. private ParameterReplacerVisitor(ParameterExpression oldParameter, Expression newExpression) { this.oldParameter = oldParameter; this.newExpression = newExpression; } ///instance. /// Replaces the occurences of /// Expression to perform replacement on. /// Parameter to replace. /// Expression to replace with. ///for in /// . /// A new expression with the replacement performed. internal static Expression Replace(Expression expression, ParameterExpression oldParameter, Expression newExpression) { Debug.Assert(expression != null, "expression != null"); Debug.Assert(oldParameter != null, "oldParameter != null"); Debug.Assert(newExpression != null, "newExpression != null"); return new ParameterReplacerVisitor(oldParameter, newExpression).Visit(expression); } ///ParameterExpression visit method. /// The ParameterExpression expression to visit ///The visited ParameterExpression expression internal override Expression VisitParameter(ParameterExpression p) { if (p == this.oldParameter) { return this.newExpression; } else { return p; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Provides an expression visitor that can replace a ParameterExpression. // // // @owner [....], [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Collections.Generic; using System.Linq.Expressions; using System.Diagnostics; ///Provides an expression visitor that can replace a internal class ParameterReplacerVisitor : ExpressionVisitor { ///. Expression to replace with. private Expression newExpression; ///Parameter to replace. private ParameterExpression oldParameter; ///Initializes a new /// Parameter to replace. /// Expression to replace with. private ParameterReplacerVisitor(ParameterExpression oldParameter, Expression newExpression) { this.oldParameter = oldParameter; this.newExpression = newExpression; } ///instance. /// Replaces the occurences of /// Expression to perform replacement on. /// Parameter to replace. /// Expression to replace with. ///for in /// . /// A new expression with the replacement performed. internal static Expression Replace(Expression expression, ParameterExpression oldParameter, Expression newExpression) { Debug.Assert(expression != null, "expression != null"); Debug.Assert(oldParameter != null, "oldParameter != null"); Debug.Assert(newExpression != null, "newExpression != null"); return new ParameterReplacerVisitor(oldParameter, newExpression).Visit(expression); } ///ParameterExpression visit method. /// The ParameterExpression expression to visit ///The visited ParameterExpression expression internal override Expression VisitParameter(ParameterExpression p) { if (p == this.oldParameter) { return this.newExpression; } else { return p; } } } } // 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
- ArraySegment.cs
- CodeTypeDeclarationCollection.cs
- CurrencyManager.cs
- compensatingcollection.cs
- QueueNameHelper.cs
- DbParameterCollection.cs
- StringArrayConverter.cs
- CreateUserWizard.cs
- ManualResetEvent.cs
- TimeSpanConverter.cs
- HttpCacheVary.cs
- OpCodes.cs
- ProfileParameter.cs
- PeerObject.cs
- WebPartMenuStyle.cs
- XamlToRtfParser.cs
- ClosureBinding.cs
- ScrollProviderWrapper.cs
- RelatedPropertyManager.cs
- DataGridViewColumnEventArgs.cs
- ScriptManagerProxy.cs
- HtmlElementErrorEventArgs.cs
- KnowledgeBase.cs
- CompositeFontParser.cs
- Asn1Utilities.cs
- FrameworkElementFactory.cs
- ActivationServices.cs
- SchemeSettingElementCollection.cs
- DataGridViewCellMouseEventArgs.cs
- DisableDpiAwarenessAttribute.cs
- ChangeBlockUndoRecord.cs
- ModelVisual3D.cs
- FileChangesMonitor.cs
- RewritingValidator.cs
- OleDbTransaction.cs
- SqlUDTStorage.cs
- SqlDataSourceCommandEventArgs.cs
- Point3D.cs
- DisposableCollectionWrapper.cs
- HttpClientCertificate.cs
- CqlLexer.cs
- TakeOrSkipWhileQueryOperator.cs
- EntityKey.cs
- NotFiniteNumberException.cs
- UnionExpr.cs
- FastPropertyAccessor.cs
- EmbossBitmapEffect.cs
- DriveInfo.cs
- TypeValidationEventArgs.cs
- StyleTypedPropertyAttribute.cs
- DESCryptoServiceProvider.cs
- RotateTransform3D.cs
- VarRefManager.cs
- NavigateUrlConverter.cs
- mediapermission.cs
- FileLogRecordEnumerator.cs
- CodeComment.cs
- OleDbParameter.cs
- WebPartEventArgs.cs
- XmlFormatWriterGenerator.cs
- WebRequestModuleElement.cs
- FileUtil.cs
- TransactedReceiveScope.cs
- GiveFeedbackEvent.cs
- SchemaCollectionCompiler.cs
- MenuTracker.cs
- Rectangle.cs
- TabletDevice.cs
- SessionStateSection.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- UrlMapping.cs
- RewritingPass.cs
- SerializerWriterEventHandlers.cs
- WindowCollection.cs
- ProtocolInformationWriter.cs
- ClientEventManager.cs
- StylusPointProperty.cs
- ApplicationSecurityInfo.cs
- SerializationInfoEnumerator.cs
- DirectionalLight.cs
- WSHttpBindingBaseElement.cs
- SspiHelper.cs
- XmlSchemaAnnotation.cs
- StaticExtensionConverter.cs
- DataFormats.cs
- CustomDictionarySources.cs
- PtsPage.cs
- TypeUsage.cs
- Automation.cs
- XmlSequenceWriter.cs
- TraceUtils.cs
- LinkedResource.cs
- RecordBuilder.cs
- ListQueryResults.cs
- XmlReflectionMember.cs
- TransformerInfoCollection.cs
- ListSurrogate.cs
- TraceHandlerErrorFormatter.cs
- IntMinMaxAggregationOperator.cs
- MetadataProperty.cs