Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / XPath / Internal / CacheAxisQuery.cs / 1 / CacheAxisQuery.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.Collections.Generic; internal abstract class CacheAxisQuery : BaseAxisQuery { // int count; -- we reusing it here protected ListoutputBuffer; public CacheAxisQuery(Query qyInput, string name, string prefix, XPathNodeType typeTest) : base(qyInput, name, prefix, typeTest) { this.outputBuffer = new List (); this.count = 0; } protected CacheAxisQuery(CacheAxisQuery other) : base(other) { this.outputBuffer = new List (other.outputBuffer); this.count = other.count; } public override void Reset() { this.count = 0; } public override object Evaluate(XPathNodeIterator context) { base.Evaluate(context); outputBuffer.Clear(); return this; } public override XPathNavigator Advance() { Debug.Assert(0 <= count && count <= outputBuffer.Count); if (count < outputBuffer.Count) { return outputBuffer[count++]; } return null; } public override XPathNavigator Current { get { Debug.Assert(0 <= count && count <= outputBuffer.Count); if (count == 0) { return null; } return outputBuffer[count - 1]; } } public override int CurrentPosition { get { return count; } } public override int Count { get { return outputBuffer.Count; } } public override QueryProps Properties { get { return QueryProps.Merge | QueryProps.Cached | QueryProps.Position | QueryProps.Count; } } } } // 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
- XmlObjectSerializerReadContext.cs
- DefinitionBase.cs
- RegexWorker.cs
- _UriTypeConverter.cs
- Exception.cs
- SafeCoTaskMem.cs
- SchemaImporter.cs
- PassportPrincipal.cs
- XmlResolver.cs
- APCustomTypeDescriptor.cs
- ApplicationTrust.cs
- Bitmap.cs
- PenThreadWorker.cs
- SeekStoryboard.cs
- SkipQueryOptionExpression.cs
- Trace.cs
- Compiler.cs
- XmlSchemaSearchPattern.cs
- WindowsRebar.cs
- RowUpdatedEventArgs.cs
- ConstructorNeedsTagAttribute.cs
- MultiBinding.cs
- WebBrowserContainer.cs
- ApplicationFileCodeDomTreeGenerator.cs
- CopyOfAction.cs
- StrongNameIdentityPermission.cs
- SafeNativeMemoryHandle.cs
- _AutoWebProxyScriptHelper.cs
- ComponentManagerBroker.cs
- BitmapSource.cs
- Property.cs
- ResourceType.cs
- ListChangedEventArgs.cs
- RenderDataDrawingContext.cs
- SoapCodeExporter.cs
- WsatConfiguration.cs
- RootProfilePropertySettingsCollection.cs
- CreateUserWizardDesigner.cs
- WebPartCatalogAddVerb.cs
- KeyBinding.cs
- __ComObject.cs
- StringToken.cs
- ClientTarget.cs
- Decoder.cs
- SiteIdentityPermission.cs
- MobileControlDesigner.cs
- TimeZoneInfo.cs
- SchemaAttDef.cs
- DataColumnSelectionConverter.cs
- DataGridCommandEventArgs.cs
- BitmapEffectInput.cs
- EmptyControlCollection.cs
- x509utils.cs
- ImageUrlEditor.cs
- CultureTableRecord.cs
- ProtocolInformationReader.cs
- GcSettings.cs
- LayoutInformation.cs
- CompatibleComparer.cs
- LinqDataSourceValidationException.cs
- ImageFormat.cs
- EntityContainerAssociationSet.cs
- DetailsViewRowCollection.cs
- SignedPkcs7.cs
- BitConverter.cs
- InitializeCorrelation.cs
- CursorConverter.cs
- Model3DGroup.cs
- ReadOnlyCollectionBase.cs
- CryptoApi.cs
- StructuredTypeEmitter.cs
- Stroke2.cs
- PriorityBinding.cs
- TextChangedEventArgs.cs
- Utils.cs
- ArgumentException.cs
- HyperLinkField.cs
- ExpressionConverter.cs
- BasePattern.cs
- DynamicControlParameter.cs
- SqlDataSourceConfigureFilterForm.cs
- RsaSecurityKey.cs
- JapaneseLunisolarCalendar.cs
- ContainerFilterService.cs
- DataServiceQueryProvider.cs
- SqlMultiplexer.cs
- ToolStripActionList.cs
- RegexBoyerMoore.cs
- IIS7WorkerRequest.cs
- SingleStorage.cs
- HttpModulesSection.cs
- FixedSOMTable.cs
- Visitors.cs
- UIElementIsland.cs
- TypeListConverter.cs
- Size3DConverter.cs
- XmlAttributeCollection.cs
- SemanticBasicElement.cs
- AutomationPatternInfo.cs
- StrokeCollectionDefaultValueFactory.cs