Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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
- DesignerDataStoredProcedure.cs
- OneWayBindingElementImporter.cs
- SmtpFailedRecipientException.cs
- AdRotator.cs
- SqlDataSourceEnumerator.cs
- RsaSecurityKey.cs
- ReliabilityContractAttribute.cs
- NetworkAddressChange.cs
- Bitmap.cs
- TrustLevelCollection.cs
- TrailingSpaceComparer.cs
- TextSchema.cs
- CommonProperties.cs
- ControlValuePropertyAttribute.cs
- SortedList.cs
- WebPageTraceListener.cs
- XmlMapping.cs
- ServicesUtilities.cs
- DLinqColumnProvider.cs
- Part.cs
- PersianCalendar.cs
- DispatcherHookEventArgs.cs
- ResolveNameEventArgs.cs
- TextPattern.cs
- FreezableDefaultValueFactory.cs
- TraceUtility.cs
- Propagator.ExtentPlaceholderCreator.cs
- LineBreakRecord.cs
- ValueConversionAttribute.cs
- ProtocolReflector.cs
- ItemsControl.cs
- CompilationUtil.cs
- TableCell.cs
- TableItemPattern.cs
- PathFigureCollection.cs
- PolyBezierSegment.cs
- SiteOfOriginPart.cs
- UserControlAutomationPeer.cs
- TypeGeneratedEventArgs.cs
- SmiMetaData.cs
- IODescriptionAttribute.cs
- CleanUpVirtualizedItemEventArgs.cs
- PeerNameRecordCollection.cs
- DelayedRegex.cs
- LogExtentCollection.cs
- basecomparevalidator.cs
- BoundingRectTracker.cs
- RawMouseInputReport.cs
- RegexCompilationInfo.cs
- ObjectSet.cs
- XhtmlBasicPanelAdapter.cs
- NonParentingControl.cs
- CompilationUnit.cs
- ControlPaint.cs
- Attachment.cs
- TimeSpan.cs
- NeutralResourcesLanguageAttribute.cs
- SemaphoreSecurity.cs
- OverflowException.cs
- MailSettingsSection.cs
- Triangle.cs
- ConstructorExpr.cs
- PointCollectionValueSerializer.cs
- SafeEventLogWriteHandle.cs
- mediapermission.cs
- HtmlListAdapter.cs
- Setter.cs
- DialogBaseForm.cs
- PickBranch.cs
- KnownAssembliesSet.cs
- DeviceContext2.cs
- TakeOrSkipWhileQueryOperator.cs
- XPathNavigatorKeyComparer.cs
- FileStream.cs
- TimeManager.cs
- BidPrivateBase.cs
- XmlSerializableServices.cs
- SystemKeyConverter.cs
- SqlParameterizer.cs
- AssemblyBuilder.cs
- NavigatorOutput.cs
- ParseNumbers.cs
- AsymmetricKeyExchangeDeformatter.cs
- HttpHandlersInstallComponent.cs
- Bold.cs
- DocumentReference.cs
- XDRSchema.cs
- AsymmetricKeyExchangeDeformatter.cs
- CheckedListBox.cs
- CommandBindingCollection.cs
- MouseGestureConverter.cs
- RecordBuilder.cs
- XmlCountingReader.cs
- DesignTimeTemplateParser.cs
- TypeUtil.cs
- DisposableCollectionWrapper.cs
- MsmqInputChannelListenerBase.cs
- BindingSource.cs
- Label.cs
- PromptBuilder.cs