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
- OleDbSchemaGuid.cs
- PersonalizableAttribute.cs
- FieldMetadata.cs
- GridViewSortEventArgs.cs
- NotFiniteNumberException.cs
- PropertyItem.cs
- SkewTransform.cs
- InputProcessorProfilesLoader.cs
- InputMethod.cs
- NamedPermissionSet.cs
- CompiledQueryCacheEntry.cs
- PartManifestEntry.cs
- Tag.cs
- EndpointDiscoveryMetadata.cs
- CultureTable.cs
- MouseGestureConverter.cs
- TransformDescriptor.cs
- FormsAuthenticationConfiguration.cs
- TypeSource.cs
- HeaderUtility.cs
- NeutralResourcesLanguageAttribute.cs
- ParallelTimeline.cs
- PersonalizationProviderHelper.cs
- WorkflowMarkupSerializationException.cs
- TypeConverterHelper.cs
- ArrayEditor.cs
- StyleBamlRecordReader.cs
- PreApplicationStartMethodAttribute.cs
- SamlAudienceRestrictionCondition.cs
- AlignmentXValidation.cs
- Thumb.cs
- ObjectContext.cs
- XmlSchemaExternal.cs
- ResourceDisplayNameAttribute.cs
- FixedTextContainer.cs
- CLSCompliantAttribute.cs
- SrgsElementFactoryCompiler.cs
- PathSegmentCollection.cs
- Math.cs
- SafeCryptHandles.cs
- CTreeGenerator.cs
- RequestStatusBarUpdateEventArgs.cs
- DependencyPropertyDescriptor.cs
- ShapeTypeface.cs
- ConfigXmlCDataSection.cs
- MethodCallConverter.cs
- _NetworkingPerfCounters.cs
- SamlDoNotCacheCondition.cs
- LinearGradientBrush.cs
- FlowPosition.cs
- EncoderFallback.cs
- TaskFormBase.cs
- SchemaNamespaceManager.cs
- DropShadowEffect.cs
- AmbiguousMatchException.cs
- DesignerActionService.cs
- TextOutput.cs
- EncodingInfo.cs
- Substitution.cs
- StrokeFIndices.cs
- ConstNode.cs
- PreservationFileReader.cs
- CuspData.cs
- ReliabilityContractAttribute.cs
- FormViewPageEventArgs.cs
- NotSupportedException.cs
- TextBoxLine.cs
- MatrixTransform.cs
- AffineTransform3D.cs
- FileFormatException.cs
- DocumentGridPage.cs
- ExternalException.cs
- OutputScopeManager.cs
- TimeoutException.cs
- FormsAuthenticationEventArgs.cs
- EntityException.cs
- SchemaMapping.cs
- TextEditorParagraphs.cs
- TrustManagerPromptUI.cs
- AsyncCompletedEventArgs.cs
- BulletedListEventArgs.cs
- Error.cs
- SocketAddress.cs
- QueryResponse.cs
- Debug.cs
- EnterpriseServicesHelper.cs
- ProfileBuildProvider.cs
- TreeNodeStyle.cs
- DoubleLinkListEnumerator.cs
- SqlDataRecord.cs
- PrinterUnitConvert.cs
- CompositeActivityCodeGenerator.cs
- XmlNavigatorStack.cs
- ReachPageContentSerializer.cs
- ThreadExceptionEvent.cs
- PositiveTimeSpanValidatorAttribute.cs
- AssociatedControlConverter.cs
- SspiWrapper.cs
- DateTimeValueSerializer.cs
- TraceContext.cs