Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Dom / XmlNodeList.cs / 1305376 / 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
- EntityViewContainer.cs
- DiscoveryClientReferences.cs
- TryExpression.cs
- TraceInternal.cs
- SiteIdentityPermission.cs
- HiddenFieldPageStatePersister.cs
- PropertyDescriptorGridEntry.cs
- StringTraceRecord.cs
- FastPropertyAccessor.cs
- AppDomainFactory.cs
- HtmlTernaryTree.cs
- MetadataPropertyAttribute.cs
- SerialPinChanges.cs
- DataListItem.cs
- SerializableReadOnlyDictionary.cs
- XmlNamespaceMapping.cs
- Condition.cs
- TextCharacters.cs
- validationstate.cs
- AsymmetricSignatureFormatter.cs
- WebPartCancelEventArgs.cs
- OdbcRowUpdatingEvent.cs
- CodeDomSerializerException.cs
- SimpleLine.cs
- PerfProviderCollection.cs
- CodeTypeReferenceExpression.cs
- TraceHwndHost.cs
- EmissiveMaterial.cs
- ListView.cs
- EditingScopeUndoUnit.cs
- ImageListUtils.cs
- CompleteWizardStep.cs
- TraceSection.cs
- TextDecorations.cs
- DesignerWebPartChrome.cs
- SqlAliaser.cs
- WindowsMenu.cs
- Utils.cs
- LoginStatusDesigner.cs
- IriParsingElement.cs
- BooleanFacetDescriptionElement.cs
- XmlDictionaryString.cs
- NumericUpDown.cs
- SiteMapProvider.cs
- FormViewUpdateEventArgs.cs
- Win32.cs
- XmlAttribute.cs
- OleDbWrapper.cs
- DataGridItem.cs
- Button.cs
- Style.cs
- HostProtectionPermission.cs
- IPEndPoint.cs
- ObjectListDataBindEventArgs.cs
- SafeFileMapViewHandle.cs
- SerializerDescriptor.cs
- SectionInput.cs
- XmlSignatureProperties.cs
- HttpPostedFileBase.cs
- RouteTable.cs
- AccessKeyManager.cs
- initElementDictionary.cs
- SoapHeaderAttribute.cs
- CurrencyWrapper.cs
- NullRuntimeConfig.cs
- odbcmetadatafactory.cs
- DesignerObjectListAdapter.cs
- DetailsViewDeletedEventArgs.cs
- MemberRelationshipService.cs
- ParentQuery.cs
- SoapSchemaExporter.cs
- UpDownEvent.cs
- CompilerError.cs
- TcpTransportBindingElement.cs
- ParagraphVisual.cs
- OSFeature.cs
- filewebrequest.cs
- ErrorInfoXmlDocument.cs
- CookieParameter.cs
- CharEnumerator.cs
- FixedMaxHeap.cs
- TypeUsage.cs
- MessageHeaderAttribute.cs
- XmlMemberMapping.cs
- MediaSystem.cs
- Point.cs
- ExportOptions.cs
- EncryptedType.cs
- SolidColorBrush.cs
- XmlAttributeProperties.cs
- HighlightComponent.cs
- SemanticBasicElement.cs
- CompositeDataBoundControl.cs
- EdmEntityTypeAttribute.cs
- Guid.cs
- SqlProviderManifest.cs
- RoutedEventValueSerializer.cs
- PropVariant.cs
- DrawListViewItemEventArgs.cs
- Rotation3DAnimationBase.cs