Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- Model3DCollection.cs
- SqlDataSourceCache.cs
- ListViewTableRow.cs
- altserialization.cs
- ScriptResourceAttribute.cs
- DataGridViewCellLinkedList.cs
- UInt64Storage.cs
- PreviewKeyDownEventArgs.cs
- BaseTemplateParser.cs
- CompilerGlobalScopeAttribute.cs
- TCPClient.cs
- odbcmetadatacolumnnames.cs
- VisualTreeUtils.cs
- Encoder.cs
- Win32.cs
- SafePointer.cs
- StatusBarAutomationPeer.cs
- InternalsVisibleToAttribute.cs
- SerializationIncompleteException.cs
- ListDictionary.cs
- NavigationProperty.cs
- ScriptControlDescriptor.cs
- TemplatedMailWebEventProvider.cs
- ControlBindingsCollection.cs
- MultiAsyncResult.cs
- AlignmentXValidation.cs
- SafePointer.cs
- BooleanExpr.cs
- PriorityQueue.cs
- FontEmbeddingManager.cs
- ListView.cs
- SiteMapNodeCollection.cs
- DataGridSortingEventArgs.cs
- SoapProtocolReflector.cs
- UpdatePanelControlTrigger.cs
- UserThread.cs
- SubMenuStyle.cs
- Perspective.cs
- SafeMILHandleMemoryPressure.cs
- HitTestWithPointDrawingContextWalker.cs
- NamespaceMapping.cs
- MustUnderstandSoapException.cs
- StylusDownEventArgs.cs
- PerformanceCounterPermission.cs
- SqlNotificationRequest.cs
- TableColumnCollection.cs
- FacetEnabledSchemaElement.cs
- IProducerConsumerCollection.cs
- AttributeTableBuilder.cs
- UnitySerializationHolder.cs
- CompiledIdentityConstraint.cs
- LambdaValue.cs
- StaticSiteMapProvider.cs
- Normalizer.cs
- ParserExtension.cs
- ModuleElement.cs
- ByteAnimationUsingKeyFrames.cs
- CqlParserHelpers.cs
- RadialGradientBrush.cs
- _SslState.cs
- CommandTreeTypeHelper.cs
- PreProcessor.cs
- BooleanFunctions.cs
- DataGridViewAutoSizeModeEventArgs.cs
- PropertyEntry.cs
- SqlUserDefinedAggregateAttribute.cs
- SQLDateTimeStorage.cs
- BulletedListEventArgs.cs
- ItemList.cs
- EntitySetBase.cs
- RolePrincipal.cs
- FontDialog.cs
- ScopeCollection.cs
- Rotation3DAnimationBase.cs
- EncryptedPackageFilter.cs
- WindowsPrincipal.cs
- RadioButtonFlatAdapter.cs
- ProcessInfo.cs
- FullTextLine.cs
- CodeTypeConstructor.cs
- SequentialWorkflowHeaderFooter.cs
- _ListenerResponseStream.cs
- TreeNodeEventArgs.cs
- Filter.cs
- StyleBamlTreeBuilder.cs
- RestHandlerFactory.cs
- OdbcCommandBuilder.cs
- KnowledgeBase.cs
- DefaultEventAttribute.cs
- CheckBoxPopupAdapter.cs
- SafeNativeMethods.cs
- Function.cs
- WorkflowViewManager.cs
- ClientFactory.cs
- TreeNodeMouseHoverEvent.cs
- DataMemberFieldEditor.cs
- AttributeTableBuilder.cs
- Separator.cs
- LingerOption.cs
- ObjectItemCollection.cs