Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Xml / System / Xml / XPath / Internal / MergeFilterQuery.cs / 1 / MergeFilterQuery.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.XPath; using System.Diagnostics; using System.Xml.Xsl; using System.Collections.Generic; internal sealed class MergeFilterQuery : CacheOutputQuery { private Query child; public MergeFilterQuery(Query input, Query child) : base(input) { this.child = child; } private MergeFilterQuery(MergeFilterQuery other) : base(other) { this.child = Clone(other.child); } public override void SetXsltContext(XsltContext xsltContext) { base.SetXsltContext(xsltContext); child.SetXsltContext(xsltContext); } public override object Evaluate(XPathNodeIterator nodeIterator) { base.Evaluate(nodeIterator); while (input.Advance() != null) { child.Evaluate(input); XPathNavigator node; while ((node = child.Advance()) != null) { Insert(outputBuffer, node); } } return this; } public override XPathNavigator MatchNode(XPathNavigator current) { XPathNavigator context = child.MatchNode(current); if (context == null) { return null; } context = input.MatchNode(context); if (context == null) { return null; } Evaluate(new XPathSingletonIterator(context.Clone(), /*moved:*/true)); XPathNavigator result = Advance(); while (result != null) { if (result.IsSamePosition(current)) { return context; } result = Advance(); } return null; } public override XPathNodeIterator Clone() { return new MergeFilterQuery(this); } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); input.PrintQuery(w); child.PrintQuery(w); w.WriteEndElement(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.XPath; using System.Diagnostics; using System.Xml.Xsl; using System.Collections.Generic; internal sealed class MergeFilterQuery : CacheOutputQuery { private Query child; public MergeFilterQuery(Query input, Query child) : base(input) { this.child = child; } private MergeFilterQuery(MergeFilterQuery other) : base(other) { this.child = Clone(other.child); } public override void SetXsltContext(XsltContext xsltContext) { base.SetXsltContext(xsltContext); child.SetXsltContext(xsltContext); } public override object Evaluate(XPathNodeIterator nodeIterator) { base.Evaluate(nodeIterator); while (input.Advance() != null) { child.Evaluate(input); XPathNavigator node; while ((node = child.Advance()) != null) { Insert(outputBuffer, node); } } return this; } public override XPathNavigator MatchNode(XPathNavigator current) { XPathNavigator context = child.MatchNode(current); if (context == null) { return null; } context = input.MatchNode(context); if (context == null) { return null; } Evaluate(new XPathSingletonIterator(context.Clone(), /*moved:*/true)); XPathNavigator result = Advance(); while (result != null) { if (result.IsSamePosition(current)) { return context; } result = Advance(); } return null; } public override XPathNodeIterator Clone() { return new MergeFilterQuery(this); } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); input.PrintQuery(w); child.PrintQuery(w); w.WriteEndElement(); } } } // 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
- MessageEncodingBindingElement.cs
- CellTreeNode.cs
- EntityClientCacheKey.cs
- HyperlinkAutomationPeer.cs
- ColorConvertedBitmap.cs
- AppSecurityManager.cs
- BridgeDataReader.cs
- ThreadAbortException.cs
- UpdateException.cs
- WebPartPersonalization.cs
- Internal.cs
- X509Extension.cs
- Perspective.cs
- TextEditorCopyPaste.cs
- XmlLoader.cs
- BeginEvent.cs
- PtsPage.cs
- BasicViewGenerator.cs
- ChangePassword.cs
- TreeViewTemplateSelector.cs
- ThemeInfoAttribute.cs
- TrustManager.cs
- AttributeExtensions.cs
- Int16Converter.cs
- ValueProviderWrapper.cs
- Solver.cs
- ClientSponsor.cs
- DataColumnMappingCollection.cs
- ElementInit.cs
- COM2IPerPropertyBrowsingHandler.cs
- AutoResetEvent.cs
- WhitespaceRule.cs
- XamlReaderHelper.cs
- CommandID.cs
- XmlWriterTraceListener.cs
- SqlWorkflowInstanceStoreLock.cs
- ActivityFunc.cs
- ArraySortHelper.cs
- MultiAsyncResult.cs
- SemanticBasicElement.cs
- StylusPointPropertyInfo.cs
- RouteUrlExpressionBuilder.cs
- SimpleBitVector32.cs
- StrokeDescriptor.cs
- EncoderFallback.cs
- SessionEndedEventArgs.cs
- HttpCacheParams.cs
- NativeMethodsOther.cs
- CommonObjectSecurity.cs
- DetailsViewPagerRow.cs
- DelayLoadType.cs
- TypeValidationEventArgs.cs
- XmlTypeAttribute.cs
- KeyGesture.cs
- PointLightBase.cs
- XamlWrappingReader.cs
- TraceLog.cs
- NavigationFailedEventArgs.cs
- ActivityMetadata.cs
- StreamWriter.cs
- SessionStateItemCollection.cs
- Color.cs
- ConfigurationManagerHelper.cs
- TextClipboardData.cs
- EntryPointNotFoundException.cs
- CodeTryCatchFinallyStatement.cs
- SqlTypeSystemProvider.cs
- SchemaNamespaceManager.cs
- FullTrustAssemblyCollection.cs
- Configuration.cs
- IntegrationExceptionEventArgs.cs
- CLRBindingWorker.cs
- OleDbConnectionFactory.cs
- TreeViewImageIndexConverter.cs
- CaseStatement.cs
- InteropBitmapSource.cs
- RefType.cs
- Separator.cs
- ProjectionPruner.cs
- KeyInfo.cs
- DataGridViewCellMouseEventArgs.cs
- PreProcessor.cs
- OlePropertyStructs.cs
- DataServiceRequest.cs
- ExternalFile.cs
- FileNotFoundException.cs
- HttpHandlersSection.cs
- KeyPullup.cs
- PolicyChain.cs
- AnnotationResourceChangedEventArgs.cs
- GC.cs
- LineUtil.cs
- Italic.cs
- DataObjectAttribute.cs
- FileEnumerator.cs
- HttpProfileBase.cs
- TextTreePropertyUndoUnit.cs
- DataGridViewCellMouseEventArgs.cs
- _AutoWebProxyScriptEngine.cs
- RelatedPropertyManager.cs