Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- StringBlob.cs
- InkCanvasAutomationPeer.cs
- OleDbStruct.cs
- BitmapEffectGeneralTransform.cs
- SerializationTrace.cs
- SqlConnectionPoolProviderInfo.cs
- BindingExpressionUncommonField.cs
- DBCommand.cs
- ResourceContainerWrapper.cs
- HttpsHostedTransportConfiguration.cs
- EdmTypeAttribute.cs
- CrossContextChannel.cs
- CommandDevice.cs
- FlowLayoutPanelDesigner.cs
- SQLMoneyStorage.cs
- PersonalizationAdministration.cs
- SpecularMaterial.cs
- OdbcUtils.cs
- CallSiteHelpers.cs
- RecognitionResult.cs
- SQLInt64Storage.cs
- TargetControlTypeCache.cs
- InheritanceContextHelper.cs
- SiteMapNode.cs
- ChannelManagerService.cs
- DataControlFieldHeaderCell.cs
- GridViewColumnCollection.cs
- _ShellExpression.cs
- Paragraph.cs
- GetWinFXPath.cs
- ConstructorBuilder.cs
- PageFunction.cs
- FixedSOMTable.cs
- SqlFactory.cs
- XmlDigitalSignatureProcessor.cs
- TokenBasedSet.cs
- DataBinder.cs
- MembershipSection.cs
- NeutralResourcesLanguageAttribute.cs
- RoutedEventArgs.cs
- PersonalizationStateInfo.cs
- RelationshipNavigation.cs
- ImageMapEventArgs.cs
- _LocalDataStoreMgr.cs
- RijndaelCryptoServiceProvider.cs
- HebrewCalendar.cs
- BinHexEncoder.cs
- Stylus.cs
- HttpRequest.cs
- ListViewInsertionMark.cs
- MeasureItemEvent.cs
- ObjectQuery.cs
- PeerNodeTraceRecord.cs
- TabControl.cs
- DrawingCollection.cs
- ListDataHelper.cs
- ValueTypeFieldReference.cs
- ProtocolImporter.cs
- SqlDependencyUtils.cs
- dataSvcMapFileLoader.cs
- DataGridViewRowPostPaintEventArgs.cs
- StatusBarItem.cs
- storepermission.cs
- TypeUsage.cs
- ProtectedConfigurationSection.cs
- DeploymentSection.cs
- TransportChannelListener.cs
- IdentityManager.cs
- OledbConnectionStringbuilder.cs
- HtmlEncodedRawTextWriter.cs
- Brush.cs
- ValueChangedEventManager.cs
- CalloutQueueItem.cs
- ElementUtil.cs
- PropVariant.cs
- EtwTrace.cs
- Constraint.cs
- EmptyEnumerable.cs
- HttpListenerResponse.cs
- ProfileService.cs
- XPathParser.cs
- NativeMethods.cs
- ModelPerspective.cs
- UserUseLicenseDictionaryLoader.cs
- RuntimeIdentifierPropertyAttribute.cs
- RotateTransform.cs
- KeySpline.cs
- Int32CAMarshaler.cs
- WindowsFont.cs
- TypeCodeDomSerializer.cs
- Menu.cs
- SQLMembershipProvider.cs
- TextParaLineResult.cs
- OleDbParameter.cs
- ThrowHelper.cs
- StylusPlugInCollection.cs
- compensatingcollection.cs
- IEnumerable.cs
- _SslStream.cs
- XmlDataDocument.cs