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
- RtfToXamlLexer.cs
- ObjectCacheHost.cs
- PointAnimation.cs
- WebControl.cs
- MaterialCollection.cs
- Translator.cs
- DynamicDataManager.cs
- ThreadExceptionEvent.cs
- PeerMessageDispatcher.cs
- Viewport3DVisual.cs
- ObjectDataSourceDisposingEventArgs.cs
- _AutoWebProxyScriptEngine.cs
- SmiRecordBuffer.cs
- CustomCategoryAttribute.cs
- BaseCodeDomTreeGenerator.cs
- AddInEnvironment.cs
- ImageInfo.cs
- HttpEncoder.cs
- DataProviderNameConverter.cs
- MethodBuilder.cs
- CodeNamespaceImport.cs
- CdpEqualityComparer.cs
- RolePrincipal.cs
- DBSchemaRow.cs
- HttpBrowserCapabilitiesBase.cs
- TypeUtils.cs
- RotateTransform.cs
- ComPlusDiagnosticTraceSchemas.cs
- bidPrivateBase.cs
- SoapSchemaImporter.cs
- DateTimeOffsetStorage.cs
- ItemCheckEvent.cs
- EDesignUtil.cs
- PageContentAsyncResult.cs
- COMException.cs
- StretchValidation.cs
- mactripleDES.cs
- PointCollection.cs
- MailAddress.cs
- OleDbConnectionFactory.cs
- ProbeMatchesCD1.cs
- XLinq.cs
- FigureHelper.cs
- ToolStripComboBox.cs
- Attachment.cs
- xmlfixedPageInfo.cs
- DBSchemaTable.cs
- PageContentAsyncResult.cs
- LiteralControl.cs
- CodeTypeDelegate.cs
- StreamWithDictionary.cs
- FixedSOMPageElement.cs
- InputBinder.cs
- AuthenticationService.cs
- LocatorManager.cs
- NamespaceInfo.cs
- DataServiceConfiguration.cs
- NotifyParentPropertyAttribute.cs
- SharedStream.cs
- wpf-etw.cs
- BamlCollectionHolder.cs
- OleStrCAMarshaler.cs
- MethodToken.cs
- SqlFacetAttribute.cs
- TextRunCacheImp.cs
- MessageBodyDescription.cs
- DesignTimeParseData.cs
- PageClientProxyGenerator.cs
- RegexNode.cs
- ItemAutomationPeer.cs
- GridErrorDlg.cs
- MappingMetadataHelper.cs
- ActivityExecutorDelegateInfo.cs
- ResourcesBuildProvider.cs
- FederatedMessageSecurityOverHttp.cs
- DrawingAttributesDefaultValueFactory.cs
- DbConnectionInternal.cs
- DataRecord.cs
- ContainerParaClient.cs
- DrawingContextWalker.cs
- LinqDataSourceHelper.cs
- Lock.cs
- TrailingSpaceComparer.cs
- ChannelPool.cs
- AssemblyResolver.cs
- TextInfo.cs
- NameObjectCollectionBase.cs
- ExtensionMethods.cs
- ContentElementAutomationPeer.cs
- ThemeInfoAttribute.cs
- PageBuildProvider.cs
- DifferencingCollection.cs
- ReferenceEqualityComparer.cs
- XmlSchemaAppInfo.cs
- BinaryObjectInfo.cs
- SchemaComplexType.cs
- ExpressionVisitorHelpers.cs
- XmlSerializerAssemblyAttribute.cs
- ClientTargetCollection.cs
- GACIdentityPermission.cs