Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. // //[....] //----------------------------------------------------------------------------- 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
- DBSqlParser.cs
- ThaiBuddhistCalendar.cs
- PngBitmapEncoder.cs
- ValidatorCollection.cs
- __Filters.cs
- ValueUtilsSmi.cs
- streamingZipPartStream.cs
- Pointer.cs
- arclist.cs
- XmlByteStreamReader.cs
- DataGridViewImageCell.cs
- TextBoxLine.cs
- CaretElement.cs
- KeyInstance.cs
- Setter.cs
- Queue.cs
- ComUdtElement.cs
- LinkDescriptor.cs
- OleDbEnumerator.cs
- shaperfactoryquerycachekey.cs
- DataSourceComponent.cs
- BitmapEditor.cs
- KnownTypesProvider.cs
- RoleManagerEventArgs.cs
- LinqDataSourceEditData.cs
- FormViewRow.cs
- CompositeScriptReference.cs
- ManipulationDelta.cs
- UidPropertyAttribute.cs
- RepeaterItem.cs
- EmptyEnumerator.cs
- HistoryEventArgs.cs
- SpellerStatusTable.cs
- Validator.cs
- FrameworkContentElementAutomationPeer.cs
- StringFreezingAttribute.cs
- SelectionRange.cs
- String.cs
- CodeDirectiveCollection.cs
- DataGridColumnReorderingEventArgs.cs
- PersonalizationProviderCollection.cs
- GeneratedContractType.cs
- WindowsTreeView.cs
- SessionStateUtil.cs
- SqlCacheDependencySection.cs
- ToolStripRenderer.cs
- RemotingConfigParser.cs
- DefaultObjectMappingItemCollection.cs
- TextDecorationCollection.cs
- AsyncOperationManager.cs
- DtdParser.cs
- PropertyTab.cs
- NonDualMessageSecurityOverHttp.cs
- TextBoxBase.cs
- SslStreamSecurityUpgradeProvider.cs
- Win32SafeHandles.cs
- BounceEase.cs
- MenuBase.cs
- XmlSubtreeReader.cs
- ColumnMapVisitor.cs
- XmlSchemaRedefine.cs
- ObjectStateFormatter.cs
- ScriptControlManager.cs
- DataMisalignedException.cs
- QilStrConcatenator.cs
- JpegBitmapEncoder.cs
- ChameleonKey.cs
- ErrorProvider.cs
- ColumnHeader.cs
- DecimalAnimationBase.cs
- Utils.cs
- MultiByteCodec.cs
- HexParser.cs
- PolicyException.cs
- FragmentQuery.cs
- CopyNamespacesAction.cs
- BooleanSwitch.cs
- DbParameterCollection.cs
- HtmlLabelAdapter.cs
- MobileListItem.cs
- DataPager.cs
- Button.cs
- DataControlFieldHeaderCell.cs
- BulletedList.cs
- VerificationException.cs
- DiffuseMaterial.cs
- ClientScriptManager.cs
- AnnotationAuthorChangedEventArgs.cs
- PageThemeCodeDomTreeGenerator.cs
- xamlnodes.cs
- XmlC14NWriter.cs
- NavigationWindow.cs
- SqlPersonalizationProvider.cs
- ModuleConfigurationInfo.cs
- Substitution.cs
- GlobalId.cs
- ProcessingInstructionAction.cs
- AppDomainProtocolHandler.cs
- SoapSchemaMember.cs
- ListViewGroupCollectionEditor.cs