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
- ImageCodecInfo.cs
- DataObjectMethodAttribute.cs
- OpenTypeLayoutCache.cs
- PropertyChangedEventArgs.cs
- UnicastIPAddressInformationCollection.cs
- RemoteCryptoTokenProvider.cs
- XpsFilter.cs
- ToolStripSplitStackLayout.cs
- XmlWhitespace.cs
- PrinterSettings.cs
- FileFormatException.cs
- Transactions.cs
- InputLanguage.cs
- OutputCacheSettings.cs
- SelectionProviderWrapper.cs
- ModifierKeysValueSerializer.cs
- DbException.cs
- SystemFonts.cs
- SaveLedgerEntryRequest.cs
- SimpleType.cs
- HwndSource.cs
- PolyBezierSegment.cs
- DynamicValidatorEventArgs.cs
- CodeObjectCreateExpression.cs
- CaseInsensitiveHashCodeProvider.cs
- CompositeControl.cs
- SBCSCodePageEncoding.cs
- TaskHelper.cs
- DropSource.cs
- EventMappingSettingsCollection.cs
- Bitmap.cs
- HttpModuleCollection.cs
- GetLedgerRequest.cs
- DataBinding.cs
- WpfPayload.cs
- InstalledVoice.cs
- SettingsPropertyNotFoundException.cs
- HashUtility.cs
- TypeSystem.cs
- DllHostedComPlusServiceHost.cs
- ImageDrawing.cs
- SafeSystemMetrics.cs
- ObjectAnimationBase.cs
- Vector3D.cs
- ContractNamespaceAttribute.cs
- DirectoryInfo.cs
- HttpException.cs
- WizardSideBarListControlItem.cs
- Guid.cs
- Opcode.cs
- MultiBinding.cs
- X509ThumbprintKeyIdentifierClause.cs
- WebEventTraceProvider.cs
- DrawingImage.cs
- AuthenticationServiceManager.cs
- PointValueSerializer.cs
- ChtmlTextWriter.cs
- UrlPath.cs
- SolidColorBrush.cs
- ListCollectionView.cs
- TokenBasedSetEnumerator.cs
- NavigationWindow.cs
- PersonalizationAdministration.cs
- TextFragmentEngine.cs
- LinkedList.cs
- KnownBoxes.cs
- DetailsViewInsertedEventArgs.cs
- CacheEntry.cs
- ConnectionStringEditor.cs
- IPPacketInformation.cs
- SplitterCancelEvent.cs
- DebugInfoExpression.cs
- CryptoApi.cs
- BoundPropertyEntry.cs
- SystemSounds.cs
- UnmanagedHandle.cs
- RepeaterItem.cs
- Vector3DKeyFrameCollection.cs
- TimeEnumHelper.cs
- RenderDataDrawingContext.cs
- SymDocumentType.cs
- TableRowsCollectionEditor.cs
- OleDbConnectionInternal.cs
- WorkflowOperationContext.cs
- SchemaImporter.cs
- PermissionToken.cs
- HwndHostAutomationPeer.cs
- HuffCodec.cs
- MouseOverProperty.cs
- X509CertificateRecipientClientCredential.cs
- SafeFileMappingHandle.cs
- CurrentChangingEventArgs.cs
- CommandDevice.cs
- DataGridParentRows.cs
- DelegatingConfigHost.cs
- Vars.cs
- ZipArchive.cs
- ManualResetEvent.cs
- _NegoStream.cs
- SecurityDocument.cs