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
- MediaSystem.cs
- FormatStringEditor.cs
- ExternalException.cs
- TextOutput.cs
- AdRotator.cs
- DataKeyArray.cs
- XmlWhitespace.cs
- documentation.cs
- RecoverInstanceLocksCommand.cs
- AnimationException.cs
- ThicknessConverter.cs
- AddingNewEventArgs.cs
- CryptoConfig.cs
- XmlSchemaSimpleContentExtension.cs
- Line.cs
- Selection.cs
- CapabilitiesState.cs
- QueryReaderSettings.cs
- ComponentDispatcher.cs
- DataGridViewRow.cs
- WebScriptEndpoint.cs
- UDPClient.cs
- XmlDocumentViewSchema.cs
- TraceData.cs
- PhoneCall.cs
- DummyDataSource.cs
- BamlResourceContent.cs
- OracleBoolean.cs
- followingquery.cs
- MetadataItem_Static.cs
- AsymmetricCryptoHandle.cs
- SHA256.cs
- NullReferenceException.cs
- FilteredXmlReader.cs
- ConfigurationSectionGroupCollection.cs
- ImmutablePropertyDescriptorGridEntry.cs
- BaseParser.cs
- BigInt.cs
- InteropAutomationProvider.cs
- CustomErrorsSection.cs
- GAC.cs
- TraceSection.cs
- ToolStripDropDownButton.cs
- DiscoveryServiceExtension.cs
- InstallerTypeAttribute.cs
- Configuration.cs
- login.cs
- UnionExpr.cs
- AbandonedMutexException.cs
- PasswordRecoveryDesigner.cs
- FloatMinMaxAggregationOperator.cs
- NativeMethodsCLR.cs
- SqlUnionizer.cs
- TemplatingOptionsDialog.cs
- NativeMethods.cs
- FixedSOMTableRow.cs
- WebHttpBinding.cs
- CallbackTimeoutsBehavior.cs
- DispatchChannelSink.cs
- DataListCommandEventArgs.cs
- VirtualizingStackPanel.cs
- ListViewContainer.cs
- InternalMappingException.cs
- Calendar.cs
- ManagementEventWatcher.cs
- wgx_exports.cs
- Interlocked.cs
- MinimizableAttributeTypeConverter.cs
- dataobject.cs
- Comparer.cs
- ConfigurationErrorsException.cs
- TransactedReceiveData.cs
- SqlMethodAttribute.cs
- OptimalBreakSession.cs
- CodeSnippetStatement.cs
- Figure.cs
- SqlProfileProvider.cs
- ServiceOperationViewControl.cs
- AdRotatorDesigner.cs
- MaxValueConverter.cs
- CallbackValidatorAttribute.cs
- InheritanceService.cs
- MonikerSyntaxException.cs
- Listbox.cs
- WpfSharedXamlSchemaContext.cs
- LocatorManager.cs
- DiscoveryRequestHandler.cs
- UIElement.cs
- PartEditor.cs
- DataServiceQueryOfT.cs
- HScrollProperties.cs
- ManagementObject.cs
- OdbcException.cs
- WebConfigurationHost.cs
- ResourceAttributes.cs
- CodeVariableDeclarationStatement.cs
- TraceProvider.cs
- AuthenticatedStream.cs
- AdapterUtil.cs
- CodeComment.cs