Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / Dom / XmlNodeList.cs / 1 / XmlNodeList.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System.Collections; // Represents an ordered collection of nodes. public abstract class XmlNodeList: IEnumerable { // Retrieves a node at the given index. public abstract XmlNode Item(int index); // Gets the number of nodes in this XmlNodeList. public abstract int Count { get;} // Provides a simple ForEach-style iteration over the collection of nodes in // this XmlNodeList. public abstract IEnumerator GetEnumerator(); // Retrieves a node at the given index. [System.Runtime.CompilerServices.IndexerName ("ItemOf")] public virtual XmlNode this[int i] { get { return Item(i);}} } } // 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
- Semaphore.cs
- DetailsViewRow.cs
- TrackingMemoryStream.cs
- SiteMapNodeItem.cs
- TagPrefixAttribute.cs
- RegistryExceptionHelper.cs
- HwndSubclass.cs
- VerticalAlignConverter.cs
- DrawListViewColumnHeaderEventArgs.cs
- WebPartMinimizeVerb.cs
- XpsFilter.cs
- AmbientLight.cs
- ToolStripPanelRenderEventArgs.cs
- ReadOnlyHierarchicalDataSource.cs
- LayoutInformation.cs
- DeferredElementTreeState.cs
- ListViewGroupItemCollection.cs
- FrugalList.cs
- ReadWriteSpinLock.cs
- ExternalException.cs
- ListViewDeleteEventArgs.cs
- LinqDataSourceDisposeEventArgs.cs
- SyndicationPerson.cs
- AmbientLight.cs
- ErrorActivity.cs
- SetMemberBinder.cs
- DebugView.cs
- XmlCharCheckingWriter.cs
- EntityDataSourceQueryBuilder.cs
- LookupBindingPropertiesAttribute.cs
- SolidColorBrush.cs
- ParseNumbers.cs
- Descriptor.cs
- DataServiceHostFactory.cs
- FilterEventArgs.cs
- _ConnectOverlappedAsyncResult.cs
- SiteMapNodeItemEventArgs.cs
- NopReturnReader.cs
- EmptyControlCollection.cs
- XmlSchemaComplexContentRestriction.cs
- Int32Rect.cs
- _LazyAsyncResult.cs
- ByteFacetDescriptionElement.cs
- DataServiceQueryException.cs
- WriteableBitmap.cs
- ActivityBuilderHelper.cs
- PTUtility.cs
- TemplateNameScope.cs
- CodeTypeMember.cs
- SchemaObjectWriter.cs
- RangeBaseAutomationPeer.cs
- EnvelopedPkcs7.cs
- Permission.cs
- FrugalList.cs
- ProcessRequestArgs.cs
- DefaultSection.cs
- ToolboxDataAttribute.cs
- IsolationInterop.cs
- MeasurementDCInfo.cs
- DependencyPropertyHelper.cs
- SplitterEvent.cs
- ModifierKeysConverter.cs
- GroupLabel.cs
- RTLAwareMessageBox.cs
- ListDictionary.cs
- XmlIncludeAttribute.cs
- Documentation.cs
- RangeValueProviderWrapper.cs
- VectorConverter.cs
- NativeRecognizer.cs
- OdbcEnvironment.cs
- DocumentApplicationJournalEntryEventArgs.cs
- TextOptionsInternal.cs
- OperationContractGenerationContext.cs
- TextDecorationLocationValidation.cs
- UnsafeNativeMethods.cs
- FormClosedEvent.cs
- Keyboard.cs
- EntityDesignerUtils.cs
- BaseParser.cs
- ACL.cs
- EmptyCollection.cs
- FixedStringLookup.cs
- assertwrapper.cs
- TaskFormBase.cs
- MobileControlsSectionHandler.cs
- FilteredReadOnlyMetadataCollection.cs
- ConfigurationManagerInternal.cs
- SafeNativeMethodsMilCoreApi.cs
- ListViewGroup.cs
- LayoutSettings.cs
- NetSectionGroup.cs
- SQLDecimal.cs
- OciLobLocator.cs
- InfoCardRSACryptoProvider.cs
- TripleDES.cs
- XPathEmptyIterator.cs
- PenCursorManager.cs
- PhysicalFontFamily.cs
- NGCPageContentSerializerAsync.cs