Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Xml / System / Xml / Dom / XPathNodeList.cs / 1 / XPathNodeList.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System.Xml.XPath; using System.Diagnostics; using System.Collections; using System.Collections.Generic; internal class XPathNodeList: XmlNodeList { Listlist; XPathNodeIterator nodeIterator; bool done; public XPathNodeList(XPathNodeIterator nodeIterator) { this.nodeIterator = nodeIterator; this.list = new List (); this.done = false; } public override int Count { get { if (! done) { ReadUntil(Int32.MaxValue); } return list.Count; } } private static readonly object[] nullparams = {}; private XmlNode GetNode(XPathNavigator n) { IHasXmlNode iHasNode = (IHasXmlNode) n; return iHasNode.GetNode(); } internal int ReadUntil(int index) { int count = list.Count; while (! done && count <= index) { if (nodeIterator.MoveNext()) { XmlNode n = GetNode(nodeIterator.Current); if (n != null) { list.Add(n); count++; } } else { done = true; break; } } return count; } public override XmlNode Item(int index) { if (list.Count <= index) { ReadUntil(index); } if (index < 0 || list.Count <= index) { return null; } return list[index]; } public override IEnumerator GetEnumerator() { return new XmlNodeListEnumerator(this); } } internal class XmlNodeListEnumerator : IEnumerator { XPathNodeList list; int index; bool valid; public XmlNodeListEnumerator(XPathNodeList list) { this.list = list; this.index = -1; this.valid = false; } public void Reset() { index = -1; } public bool MoveNext() { index++; int count = list.ReadUntil(index + 1); // read past for delete-node case if (count - 1 < index) { return false; } valid = (list[index] != null); return valid; } public object Current { get { if (valid) { return list[index]; } return null; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System.Xml.XPath; using System.Diagnostics; using System.Collections; using System.Collections.Generic; internal class XPathNodeList: XmlNodeList { Listlist; XPathNodeIterator nodeIterator; bool done; public XPathNodeList(XPathNodeIterator nodeIterator) { this.nodeIterator = nodeIterator; this.list = new List (); this.done = false; } public override int Count { get { if (! done) { ReadUntil(Int32.MaxValue); } return list.Count; } } private static readonly object[] nullparams = {}; private XmlNode GetNode(XPathNavigator n) { IHasXmlNode iHasNode = (IHasXmlNode) n; return iHasNode.GetNode(); } internal int ReadUntil(int index) { int count = list.Count; while (! done && count <= index) { if (nodeIterator.MoveNext()) { XmlNode n = GetNode(nodeIterator.Current); if (n != null) { list.Add(n); count++; } } else { done = true; break; } } return count; } public override XmlNode Item(int index) { if (list.Count <= index) { ReadUntil(index); } if (index < 0 || list.Count <= index) { return null; } return list[index]; } public override IEnumerator GetEnumerator() { return new XmlNodeListEnumerator(this); } } internal class XmlNodeListEnumerator : IEnumerator { XPathNodeList list; int index; bool valid; public XmlNodeListEnumerator(XPathNodeList list) { this.list = list; this.index = -1; this.valid = false; } public void Reset() { index = -1; } public bool MoveNext() { index++; int count = list.ReadUntil(index + 1); // read past for delete-node case if (count - 1 < index) { return false; } valid = (list[index] != null); return valid; } public object Current { get { if (valid) { return list[index]; } return null; } } } } // 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
- MimeObjectFactory.cs
- QuaternionRotation3D.cs
- RTLAwareMessageBox.cs
- SolidColorBrush.cs
- OleDbReferenceCollection.cs
- HotCommands.cs
- FullTrustAssemblyCollection.cs
- DoubleIndependentAnimationStorage.cs
- SizeIndependentAnimationStorage.cs
- XXXOnTypeBuilderInstantiation.cs
- HtmlInputHidden.cs
- ProfileParameter.cs
- WindowsFormsSynchronizationContext.cs
- CacheMemory.cs
- ResourceCategoryAttribute.cs
- TreeSet.cs
- EventPrivateKey.cs
- Dynamic.cs
- DefaultBinder.cs
- CaseInsensitiveComparer.cs
- SapiInterop.cs
- ApplicationHost.cs
- SqlBooleanizer.cs
- ErrorFormatter.cs
- Peer.cs
- ToggleButtonAutomationPeer.cs
- FullTrustAssemblyCollection.cs
- DataGridViewCellMouseEventArgs.cs
- WebPartConnectionsCancelEventArgs.cs
- AccessibleObject.cs
- Substitution.cs
- GridItemCollection.cs
- SQLBoolean.cs
- OpenFileDialog.cs
- AlternateViewCollection.cs
- ChangePasswordDesigner.cs
- TemplateXamlTreeBuilder.cs
- DescriptionAttribute.cs
- HtmlForm.cs
- MouseGestureValueSerializer.cs
- COM2ExtendedBrowsingHandler.cs
- TypeConstant.cs
- DropShadowEffect.cs
- RemoteDebugger.cs
- DBCommandBuilder.cs
- PolicyStatement.cs
- SemanticResultValue.cs
- RegexRunner.cs
- GenericTypeParameterBuilder.cs
- StrokeRenderer.cs
- querybuilder.cs
- SecurityState.cs
- OleCmdHelper.cs
- OptimalTextSource.cs
- NativeMethodsOther.cs
- oledbmetadatacollectionnames.cs
- QueryValue.cs
- AlternateViewCollection.cs
- HitTestWithGeometryDrawingContextWalker.cs
- EventManager.cs
- KeyToListMap.cs
- MoveSizeWinEventHandler.cs
- MouseGestureValueSerializer.cs
- ServiceOperationInfoTypeConverter.cs
- EmptyReadOnlyDictionaryInternal.cs
- ChooseAction.cs
- TypeRefElement.cs
- UidManager.cs
- PolicyImporterElementCollection.cs
- UpDownBase.cs
- SecurityPermission.cs
- CompressionTransform.cs
- XmlConvert.cs
- Models.cs
- TypeBuilder.cs
- AccessDataSource.cs
- Message.cs
- MSG.cs
- XmlDataDocument.cs
- TextTreeTextNode.cs
- UpdateManifestForBrowserApplication.cs
- ByeOperationAsyncResult.cs
- IisNotInstalledException.cs
- ResumeStoryboard.cs
- RegistryKey.cs
- PropertyBuilder.cs
- DocumentGridPage.cs
- NegotiateStream.cs
- GeometryGroup.cs
- CatalogPartCollection.cs
- HasCopySemanticsAttribute.cs
- XPathSelectionIterator.cs
- AnimatedTypeHelpers.cs
- FontDriver.cs
- TraceUtils.cs
- PointF.cs
- SortableBindingList.cs
- CompilerError.cs
- SymbolPair.cs
- ResourcesGenerator.cs