Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Dom / XmlNodeList.cs / 1305376 / 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. // //[....] //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListBoxItemAutomationPeer.cs
- ColorBlend.cs
- WebConfigurationFileMap.cs
- panel.cs
- EdmRelationshipRoleAttribute.cs
- WorkflowShape.cs
- ProfilePropertySettings.cs
- CompiledQueryCacheEntry.cs
- HatchBrush.cs
- DataGridViewRowsAddedEventArgs.cs
- CharAnimationBase.cs
- XmlDocumentSerializer.cs
- uribuilder.cs
- SecurityVerifiedMessage.cs
- ToolStrip.cs
- WebContentFormatHelper.cs
- Convert.cs
- ContextMenuAutomationPeer.cs
- XmlSchemaValidator.cs
- ConsoleKeyInfo.cs
- SimpleBitVector32.cs
- DesignerCommandSet.cs
- ValueTypeFixupInfo.cs
- RecognizedAudio.cs
- WebPartMovingEventArgs.cs
- EmptyEnumerable.cs
- CodePageUtils.cs
- ImageListDesigner.cs
- InkPresenterAutomationPeer.cs
- ZipIOModeEnforcingStream.cs
- XmlAttributeAttribute.cs
- ListViewItem.cs
- RawStylusInputCustomData.cs
- RoutedEventArgs.cs
- ThrowHelper.cs
- Verify.cs
- ChannelServices.cs
- ExpressionEditorAttribute.cs
- FileLevelControlBuilderAttribute.cs
- FastEncoder.cs
- IdentitySection.cs
- SchemaConstraints.cs
- BaseHashHelper.cs
- DisplayInformation.cs
- TypeNameConverter.cs
- Cursors.cs
- TrustLevelCollection.cs
- SequentialOutput.cs
- File.cs
- CustomLineCap.cs
- DeclaredTypeElementCollection.cs
- StrongNameUtility.cs
- XmlSerializationReader.cs
- UrlPath.cs
- CustomError.cs
- ThreadStaticAttribute.cs
- ListItemCollection.cs
- ConfigurationConverterBase.cs
- DocumentViewerHelper.cs
- CacheVirtualItemsEvent.cs
- XmlnsPrefixAttribute.cs
- ToolStripDropDownItem.cs
- HttpContextBase.cs
- TabPanel.cs
- RoutedEventArgs.cs
- ListViewGroup.cs
- PenThreadPool.cs
- RegexInterpreter.cs
- IntSumAggregationOperator.cs
- EventLogEntryCollection.cs
- Timer.cs
- PriorityBinding.cs
- TemplateBuilder.cs
- BindingSource.cs
- Style.cs
- Win32.cs
- XmlIgnoreAttribute.cs
- HeaderUtility.cs
- DrawingBrush.cs
- DesigntimeLicenseContext.cs
- SafePEFileHandle.cs
- PrinterSettings.cs
- PtsContext.cs
- SettingsPropertyValueCollection.cs
- CounterCreationDataCollection.cs
- DeflateEmulationStream.cs
- XmlSchemaChoice.cs
- MailWriter.cs
- IdentityReference.cs
- SR.cs
- DataGrid.cs
- SemanticBasicElement.cs
- AssemblyGen.cs
- UIElementIsland.cs
- assertwrapper.cs
- DataServiceProcessingPipeline.cs
- WebBrowserEvent.cs
- TypeInfo.cs
- ProxySimple.cs
- TagMapInfo.cs