Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / DocumentOrderQuery.cs / 1305376 / DocumentOrderQuery.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; internal sealed class DocumentOrderQuery : CacheOutputQuery { public DocumentOrderQuery(Query qyParent) : base(qyParent) {} private DocumentOrderQuery(DocumentOrderQuery other) : base(other) { } public override object Evaluate(XPathNodeIterator context) { base.Evaluate(context); XPathNavigator node; while ((node = base.input.Advance()) != null) { Insert(outputBuffer, node); } return this; } public override XPathNavigator MatchNode(XPathNavigator context) { return input.MatchNode(context); } public override XPathNodeIterator Clone() { return new DocumentOrderQuery(this); } } } // 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
- ContextProperty.cs
- ScrollProviderWrapper.cs
- Model3D.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- HostingPreferredMapPath.cs
- XmlWrappingReader.cs
- CompoundFileDeflateTransform.cs
- RSAOAEPKeyExchangeFormatter.cs
- Console.cs
- StylusCaptureWithinProperty.cs
- RelationshipManager.cs
- DependencyPropertyChangedEventArgs.cs
- PrivilegedConfigurationManager.cs
- ReadWriteObjectLock.cs
- ScriptReferenceEventArgs.cs
- ScriptControlManager.cs
- RowBinding.cs
- MimeObjectFactory.cs
- ObjectHelper.cs
- DependencyObjectType.cs
- coordinatorscratchpad.cs
- X509Certificate2Collection.cs
- followingsibling.cs
- Misc.cs
- SqlExpander.cs
- ProxyFragment.cs
- CodeVariableDeclarationStatement.cs
- ComponentChangingEvent.cs
- CodeBinaryOperatorExpression.cs
- OracleException.cs
- CatalogPart.cs
- PieceNameHelper.cs
- AutomationProperty.cs
- RowParagraph.cs
- XmlPreloadedResolver.cs
- ProxyWebPartManagerDesigner.cs
- AuthorizationSection.cs
- formatter.cs
- Point3DKeyFrameCollection.cs
- MemberAccessException.cs
- FrameworkName.cs
- KeyGestureValueSerializer.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- UIntPtr.cs
- DeviceContexts.cs
- _LocalDataStore.cs
- SplayTreeNode.cs
- XmlSchemaNotation.cs
- NonValidatingSecurityTokenAuthenticator.cs
- Subordinate.cs
- StringPropertyBuilder.cs
- DataFormats.cs
- StylusEventArgs.cs
- WebPartDisplayModeCollection.cs
- ApplicationActivator.cs
- CodeExporter.cs
- UniformGrid.cs
- DesignerImageAdapter.cs
- Partitioner.cs
- ToolStripDropDownClosedEventArgs.cs
- CustomActivityDesigner.cs
- DataRowView.cs
- SqlProviderServices.cs
- DataTrigger.cs
- DtrList.cs
- StringInfo.cs
- LoginName.cs
- InputLanguageSource.cs
- TrackingProvider.cs
- BitmapEffectInput.cs
- ReadOnlyDataSource.cs
- ObjectResult.cs
- TextBox.cs
- DropSource.cs
- StdValidatorsAndConverters.cs
- DataBoundControl.cs
- LinearQuaternionKeyFrame.cs
- TypeUsageBuilder.cs
- DbUpdateCommandTree.cs
- CheckBox.cs
- ToolStripDropDownButton.cs
- IdnMapping.cs
- XmlUTF8TextReader.cs
- ToolboxItemImageConverter.cs
- CacheVirtualItemsEvent.cs
- ObjectFullSpanRewriter.cs
- EventItfInfo.cs
- WindowsFormsHostAutomationPeer.cs
- DataGridState.cs
- DotExpr.cs
- ButtonChrome.cs
- CellConstant.cs
- ResumeStoryboard.cs
- XmlObjectSerializerWriteContext.cs
- IIS7UserPrincipal.cs
- DropAnimation.xaml.cs
- TextBox.cs
- DataRowExtensions.cs
- RNGCryptoServiceProvider.cs
- TextServicesCompartmentEventSink.cs