Code:
/ FX-1434 / FX-1434 / 1.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
- ClientClassGenerator.cs
- BoundColumn.cs
- WindowsIdentity.cs
- PathSegment.cs
- DateTimeFormatInfoScanner.cs
- TemplateInstanceAttribute.cs
- AttachedPropertiesService.cs
- MissingMemberException.cs
- ResponseBodyWriter.cs
- ResXResourceReader.cs
- KoreanCalendar.cs
- MethodMessage.cs
- ObjectDataSourceEventArgs.cs
- CustomAttributeSerializer.cs
- FontDifferentiator.cs
- ActiveXContainer.cs
- StringCollectionEditor.cs
- FormsAuthenticationTicket.cs
- Stopwatch.cs
- LinkedResourceCollection.cs
- Marshal.cs
- SafeNativeMethods.cs
- CriticalExceptions.cs
- DocumentPaginator.cs
- BinaryWriter.cs
- DelegateSerializationHolder.cs
- DataGridDetailsPresenter.cs
- KerberosSecurityTokenAuthenticator.cs
- EtwTrackingParticipant.cs
- ToolboxComponentsCreatingEventArgs.cs
- JavaScriptSerializer.cs
- XmlChildEnumerator.cs
- SoundPlayerAction.cs
- DnsPermission.cs
- HtmlHistory.cs
- X509CertificateClaimSet.cs
- ChangeBlockUndoRecord.cs
- CheckBoxBaseAdapter.cs
- SocketAddress.cs
- MonitoringDescriptionAttribute.cs
- AccessText.cs
- CodeMemberField.cs
- CreateDataSourceDialog.cs
- TextEditorSpelling.cs
- RequestNavigateEventArgs.cs
- AttributeQuery.cs
- EventLogHandle.cs
- LeftCellWrapper.cs
- DescendantQuery.cs
- DesignerMetadata.cs
- MatrixAnimationUsingKeyFrames.cs
- PathGeometry.cs
- UriSectionData.cs
- TreeNodeStyle.cs
- TimersDescriptionAttribute.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- HttpAsyncResult.cs
- ValidatedMobileControlConverter.cs
- HtmlInputHidden.cs
- EntityContainer.cs
- DateTimeConverter2.cs
- HostingEnvironmentException.cs
- QuaternionAnimationBase.cs
- SafeBuffer.cs
- ListViewCancelEventArgs.cs
- SizeAnimation.cs
- FixedSOMSemanticBox.cs
- URLBuilder.cs
- AttributeXamlType.cs
- TextEditorTyping.cs
- StorageComplexTypeMapping.cs
- Visual.cs
- XPathBinder.cs
- AnimationClockResource.cs
- InternalResources.cs
- NetworkAddressChange.cs
- ProcessThreadCollection.cs
- Debugger.cs
- PersonalizableAttribute.cs
- ErrorReporting.cs
- _SafeNetHandles.cs
- ExpressionVisitorHelpers.cs
- ChannelManager.cs
- TemplateParser.cs
- StartUpEventArgs.cs
- ActionFrame.cs
- DataContractSerializerOperationBehavior.cs
- MultiBinding.cs
- LayoutTable.cs
- FileDialogCustomPlacesCollection.cs
- DbParameterCollection.cs
- LambdaCompiler.ControlFlow.cs
- WebReferencesBuildProvider.cs
- AmbientEnvironment.cs
- SiteMap.cs
- SqlNodeAnnotation.cs
- FastEncoderWindow.cs
- GeneralTransform.cs
- ByteAnimationBase.cs
- AuthenticatedStream.cs