Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ActivityDesignerLayoutSerializers.cs
- RowType.cs
- RotateTransform3D.cs
- TypeLoadException.cs
- FragmentQueryKB.cs
- StringUtil.cs
- EntityEntry.cs
- TemplatePartAttribute.cs
- InputLangChangeEvent.cs
- SizeFConverter.cs
- LoginCancelEventArgs.cs
- SafeFileHandle.cs
- AttributeExtensions.cs
- EncryptedKey.cs
- DocumentViewer.cs
- TypeExtension.cs
- FlowchartStart.xaml.cs
- ListParaClient.cs
- InheritanceAttribute.cs
- HostedNamedPipeTransportManager.cs
- ClaimTypeElementCollection.cs
- CollectionConverter.cs
- ParameterCollection.cs
- WebPartConnectionsConnectVerb.cs
- HttpHostedTransportConfiguration.cs
- DbConnectionFactory.cs
- TextParagraphProperties.cs
- SourceElementsCollection.cs
- PublisherIdentityPermission.cs
- WindowsGrip.cs
- _NestedMultipleAsyncResult.cs
- ListSortDescriptionCollection.cs
- CodeGenerationManager.cs
- DbCommandDefinition.cs
- IconConverter.cs
- XPathAncestorQuery.cs
- FigureParaClient.cs
- ScaleTransform.cs
- TokenizerHelper.cs
- TypeExtension.cs
- LogStore.cs
- PageAdapter.cs
- CodeExpressionCollection.cs
- StreamGeometryContext.cs
- DataSourceHelper.cs
- TransactionContext.cs
- XPathNavigator.cs
- ConfigurationManagerHelperFactory.cs
- TableCell.cs
- KeyEventArgs.cs
- DataAdapter.cs
- cache.cs
- Attributes.cs
- DateTimeFormat.cs
- CompiledRegexRunner.cs
- ToolZone.cs
- Parser.cs
- Scheduler.cs
- ConfigLoader.cs
- Border.cs
- Array.cs
- KeyProperty.cs
- SmiMetaData.cs
- GridView.cs
- DataColumnMappingCollection.cs
- ExchangeUtilities.cs
- DesignerSerializerAttribute.cs
- SequentialWorkflowHeaderFooter.cs
- GeneralTransform3D.cs
- OutputScope.cs
- XmlBaseReader.cs
- AuthorizationContext.cs
- QuaternionValueSerializer.cs
- FixedStringLookup.cs
- UriTemplateQueryValue.cs
- TablePatternIdentifiers.cs
- DetailsViewDeleteEventArgs.cs
- OdbcConnectionOpen.cs
- ToggleProviderWrapper.cs
- EditingCommands.cs
- MetadataPropertyCollection.cs
- AdornerLayer.cs
- GraphicsContainer.cs
- CompoundFileIOPermission.cs
- JsonFormatReaderGenerator.cs
- OptimalTextSource.cs
- TemplateXamlParser.cs
- StylusEditingBehavior.cs
- ColorConvertedBitmap.cs
- GeneralTransform3DGroup.cs
- Events.cs
- SchemaTableOptionalColumn.cs
- FormViewDeleteEventArgs.cs
- TextBlockAutomationPeer.cs
- GatewayDefinition.cs
- BuiltInExpr.cs
- FreezableOperations.cs
- WindowsButton.cs
- SelectingProviderEventArgs.cs
- PointHitTestParameters.cs