Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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. // //[....] //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ChannelServices.cs
- ProxyWebPartManager.cs
- StateRuntime.cs
- CodeBlockBuilder.cs
- ProgressBar.cs
- DynamicDocumentPaginator.cs
- NativeCompoundFileAPIs.cs
- TemplateApplicationHelper.cs
- MetadataSource.cs
- FontUnit.cs
- HttpWebResponse.cs
- ArrangedElement.cs
- ButtonChrome.cs
- SelectionUIHandler.cs
- FixedSchema.cs
- IsolatedStorageFile.cs
- ToolStripLabel.cs
- ComPlusInstanceProvider.cs
- ClientSponsor.cs
- FactoryId.cs
- NumericUpDownAccelerationCollection.cs
- EntityTypeEmitter.cs
- DataGridViewColumnStateChangedEventArgs.cs
- HttpResponseHeader.cs
- StyleTypedPropertyAttribute.cs
- PingReply.cs
- DesignTimeTemplateParser.cs
- MexHttpsBindingElement.cs
- NamedObject.cs
- XmlMemberMapping.cs
- CompilerGlobalScopeAttribute.cs
- ServiceDescriptions.cs
- WebPartConnectionsCloseVerb.cs
- Selection.cs
- OuterGlowBitmapEffect.cs
- DataGridViewImageColumn.cs
- DropDownHolder.cs
- ClassDataContract.cs
- PolyQuadraticBezierSegment.cs
- InvalidFilterCriteriaException.cs
- DesignTimeTemplateParser.cs
- CodeSubDirectory.cs
- ComPlusDiagnosticTraceRecords.cs
- _UriTypeConverter.cs
- CommandManager.cs
- FileReader.cs
- StringBlob.cs
- QueryOperationResponseOfT.cs
- DefinitionBase.cs
- Encoder.cs
- WebPartTracker.cs
- CompatibleIComparer.cs
- Constraint.cs
- XmlDataLoader.cs
- EUCJPEncoding.cs
- SmtpNetworkElement.cs
- XsltInput.cs
- TextRange.cs
- Publisher.cs
- ColorMap.cs
- mediaeventshelper.cs
- RecognizeCompletedEventArgs.cs
- SuppressIldasmAttribute.cs
- FileDataSourceCache.cs
- Exceptions.cs
- Path.cs
- Dispatcher.cs
- IDReferencePropertyAttribute.cs
- BitVec.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- ObjectConverter.cs
- WorkflowHostingResponseContext.cs
- StickyNoteContentControl.cs
- DirectionalLight.cs
- DataGridSortCommandEventArgs.cs
- ProfileGroupSettings.cs
- GridViewRowCollection.cs
- ToolBarTray.cs
- ResourceKey.cs
- SortExpressionBuilder.cs
- BindingNavigator.cs
- AppLevelCompilationSectionCache.cs
- XhtmlConformanceSection.cs
- X509Certificate2Collection.cs
- IfAction.cs
- HuffModule.cs
- GeometryGroup.cs
- BaseProcessProtocolHandler.cs
- ConnectionOrientedTransportChannelFactory.cs
- PenCursorManager.cs
- RotateTransform3D.cs
- OutputScope.cs
- WebSysDisplayNameAttribute.cs
- CompiledQuery.cs
- GlobalAllocSafeHandle.cs
- DATA_BLOB.cs
- DataControlReference.cs
- PasswordDeriveBytes.cs
- HotCommands.cs
- XmlTextAttribute.cs