Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / XPath / Internal / DocumentOrderQuery.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ErrorProvider.cs
- RadioButton.cs
- AssemblyAttributesGoHere.cs
- Style.cs
- XmlIncludeAttribute.cs
- QuotedStringFormatReader.cs
- LinearGradientBrush.cs
- SQLGuid.cs
- ProxyGenerationError.cs
- ToolStripArrowRenderEventArgs.cs
- GeometryModel3D.cs
- PasswordRecoveryDesigner.cs
- AddIn.cs
- GeneralTransform3DTo2DTo3D.cs
- WorkflowQueueInfo.cs
- XmlQueryStaticData.cs
- DocumentSchemaValidator.cs
- ProtocolsConfigurationHandler.cs
- RoutedCommand.cs
- SourceSwitch.cs
- PackageRelationship.cs
- SchemaType.cs
- FileController.cs
- CmsInterop.cs
- AvtEvent.cs
- ButtonColumn.cs
- TaskDesigner.cs
- WhereaboutsReader.cs
- ObjectTokenCategory.cs
- ConstructorNeedsTagAttribute.cs
- XmlDataSourceView.cs
- EntityDataReader.cs
- DataServices.cs
- ControlCachePolicy.cs
- DBCommand.cs
- ServerIdentity.cs
- _HTTPDateParse.cs
- ExceptionRoutedEventArgs.cs
- CalloutQueueItem.cs
- QilXmlReader.cs
- XmlChildNodes.cs
- RunClient.cs
- TemplateControlBuildProvider.cs
- CreateSequenceResponse.cs
- CodeTypeOfExpression.cs
- CharacterBuffer.cs
- GrammarBuilder.cs
- SoapAttributeAttribute.cs
- WindowsTreeView.cs
- ConnectionProviderAttribute.cs
- ResourceWriter.cs
- ContainerUtilities.cs
- ValueType.cs
- BulletedListDesigner.cs
- HtmlUtf8RawTextWriter.cs
- ByeOperationCD1AsyncResult.cs
- SerialStream.cs
- ConfigurationElement.cs
- ChannelServices.cs
- SimpleRecyclingCache.cs
- SemaphoreSlim.cs
- InstancePersistenceCommandException.cs
- WebRequestModulesSection.cs
- WebPartMenu.cs
- XmlUnspecifiedAttribute.cs
- DbExpressionBuilder.cs
- CodeDirectoryCompiler.cs
- RecordConverter.cs
- AppDomainAttributes.cs
- PreservationFileReader.cs
- BinaryMessageEncodingElement.cs
- NotImplementedException.cs
- MarshalByValueComponent.cs
- AdornedElementPlaceholder.cs
- TextProperties.cs
- XmlValueConverter.cs
- CodeComment.cs
- DescendentsWalker.cs
- HttpHandlersSection.cs
- WebPartZoneBase.cs
- FixedLineResult.cs
- querybuilder.cs
- MarkupObject.cs
- DependencyPropertyKind.cs
- PlatformNotSupportedException.cs
- PenContext.cs
- SqlCacheDependencySection.cs
- XmlBinaryReader.cs
- BStrWrapper.cs
- PropertyMetadata.cs
- ButtonBase.cs
- EntityDataSourceUtil.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- TimersDescriptionAttribute.cs
- CompiledAction.cs
- WindowsRichEditRange.cs
- PagesSection.cs
- BoolExpr.cs
- DefaultCommandExtensionCallback.cs
- WebAdminConfigurationHelper.cs