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
- PasswordBoxAutomationPeer.cs
- SmtpClient.cs
- ResourcesChangeInfo.cs
- PanelDesigner.cs
- XPathParser.cs
- UpDownBase.cs
- AnimatedTypeHelpers.cs
- TraceContext.cs
- RequestQueryProcessor.cs
- GridViewRowEventArgs.cs
- VersionedStream.cs
- DependencyPropertyConverter.cs
- DllNotFoundException.cs
- Rotation3D.cs
- StrongNameKeyPair.cs
- CustomAssemblyResolver.cs
- ReflectionTypeLoadException.cs
- TypeExtensionSerializer.cs
- FileReader.cs
- BitmapEffectInput.cs
- C14NUtil.cs
- RegistryExceptionHelper.cs
- GridProviderWrapper.cs
- GlyphTypeface.cs
- CriticalExceptions.cs
- XslNumber.cs
- DynamicResourceExtensionConverter.cs
- ProfileProvider.cs
- XmlSecureResolver.cs
- Rethrow.cs
- SspiSecurityToken.cs
- FormsAuthenticationEventArgs.cs
- SoapHelper.cs
- AutomationFocusChangedEventArgs.cs
- DateTimeHelper.cs
- HierarchicalDataSourceConverter.cs
- InheritanceContextChangedEventManager.cs
- NoResizeSelectionBorderGlyph.cs
- Condition.cs
- SerializationStore.cs
- PropertyCondition.cs
- AccessDataSource.cs
- TraceListeners.cs
- EUCJPEncoding.cs
- SoapFault.cs
- Int32CAMarshaler.cs
- OracleRowUpdatedEventArgs.cs
- NGCSerializationManager.cs
- BitmapCodecInfoInternal.cs
- IsolatedStoragePermission.cs
- PointCollection.cs
- MimeWriter.cs
- AuthStoreRoleProvider.cs
- SqlConnectionFactory.cs
- MailAddressCollection.cs
- WebServiceEnumData.cs
- WpfWebRequestHelper.cs
- DeviceContext2.cs
- LockCookie.cs
- sqlpipe.cs
- ExtendedPropertyInfo.cs
- ActivityStateRecord.cs
- RegexParser.cs
- DataGridViewDataConnection.cs
- PerformanceCounterLib.cs
- RuntimeIdentifierPropertyAttribute.cs
- DoubleAnimation.cs
- ModelTreeManager.cs
- Html32TextWriter.cs
- Parser.cs
- SortedList.cs
- XmlSchemaInclude.cs
- SecurityPermission.cs
- ParallelTimeline.cs
- ControlBindingsCollection.cs
- hwndwrapper.cs
- ToolStripContainerActionList.cs
- DBParameter.cs
- HandlerWithFactory.cs
- AncestorChangedEventArgs.cs
- SQLGuidStorage.cs
- PerformanceCounterManager.cs
- UIElementParaClient.cs
- NavigationService.cs
- DefaultSettingsSection.cs
- XmlAnyAttributeAttribute.cs
- MaskedTextProvider.cs
- HandlerFactoryCache.cs
- ImageSourceConverter.cs
- RoleExceptions.cs
- FunctionDetailsReader.cs
- SAPIEngineTypes.cs
- StringWriter.cs
- StoryFragments.cs
- StrokeNode.cs
- LexicalChunk.cs
- CompiledXpathExpr.cs
- SwitchElementsCollection.cs
- XmlWellformedWriter.cs
- MenuBindingsEditorForm.cs