Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / XPath / Internal / GroupQuery.cs / 1 / GroupQuery.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.Globalization; internal sealed class GroupQuery : BaseAxisQuery { public GroupQuery(Query qy): base(qy) {} private GroupQuery(GroupQuery other) : base(other) { } public override XPathNavigator Advance() { currentNode = qyInput.Advance(); if (currentNode != null) { position++; } return currentNode; } public override object Evaluate(XPathNodeIterator nodeIterator) { return qyInput.Evaluate(nodeIterator); } public override XPathNodeIterator Clone() { return new GroupQuery(this); } public override XPathResultType StaticType { get { return qyInput.StaticType; } } public override QueryProps Properties { get { return QueryProps.Position; } } // Doesn't have QueryProps.Merge } } // 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
- TimeSpanSecondsOrInfiniteConverter.cs
- JapaneseLunisolarCalendar.cs
- ProcessThread.cs
- BasicHttpBindingCollectionElement.cs
- sortedlist.cs
- WebControl.cs
- Operator.cs
- EntityContainerEmitter.cs
- WindowsFont.cs
- DataGridParentRows.cs
- InfoCard.cs
- PropVariant.cs
- PtsHost.cs
- Item.cs
- StreamUpdate.cs
- HScrollProperties.cs
- Point3DAnimationBase.cs
- ApplicationGesture.cs
- TreeViewItem.cs
- dataSvcMapFileLoader.cs
- ProjectionQueryOptionExpression.cs
- CodeValidator.cs
- ReferentialConstraint.cs
- TypefaceCollection.cs
- StubHelpers.cs
- DataColumnChangeEvent.cs
- XPathNavigatorReader.cs
- SystemKeyConverter.cs
- printdlgexmarshaler.cs
- WindowsFormsSynchronizationContext.cs
- HostingEnvironmentSection.cs
- translator.cs
- NetworkCredential.cs
- TableCellAutomationPeer.cs
- ToolZone.cs
- ClientFormsAuthenticationCredentials.cs
- GroupLabel.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- PropertyConverter.cs
- UnhandledExceptionEventArgs.cs
- ImageListUtils.cs
- SystemColors.cs
- SqlFactory.cs
- TextServicesCompartment.cs
- MissingManifestResourceException.cs
- TreeBuilderBamlTranslator.cs
- XmlUnspecifiedAttribute.cs
- PageSettings.cs
- ClientFormsIdentity.cs
- LostFocusEventManager.cs
- Native.cs
- WaitingCursor.cs
- ActivityAction.cs
- TypedCompletedAsyncResult.cs
- TreeNodeEventArgs.cs
- XmlDomTextWriter.cs
- MouseCaptureWithinProperty.cs
- SharedUtils.cs
- WsdlInspector.cs
- FixedTextView.cs
- SafeNativeMethods.cs
- BitmapFrameEncode.cs
- Stylesheet.cs
- WebBrowserContainer.cs
- RelatedEnd.cs
- Baml2006ReaderSettings.cs
- ProcessThread.cs
- GeneralTransform3D.cs
- Socket.cs
- ProtocolsSection.cs
- Predicate.cs
- Dump.cs
- CompiledRegexRunner.cs
- _AcceptOverlappedAsyncResult.cs
- QilStrConcat.cs
- tibetanshape.cs
- GlobalizationAssembly.cs
- TreeNodeConverter.cs
- TextEffectCollection.cs
- WindowsComboBox.cs
- DesignerTextWriter.cs
- XmlSchemaDocumentation.cs
- MethodToken.cs
- WebEvents.cs
- DbConnectionPoolIdentity.cs
- MergeFailedEvent.cs
- SystemGatewayIPAddressInformation.cs
- CommonObjectSecurity.cs
- XmlConvert.cs
- MenuAdapter.cs
- DrawingContextWalker.cs
- WebContext.cs
- SoapObjectWriter.cs
- DataSetMappper.cs
- shaperfactory.cs
- TextCollapsingProperties.cs
- ProfileParameter.cs
- UnmanagedMemoryStreamWrapper.cs
- SkipStoryboardToFill.cs
- ValidationEventArgs.cs