Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- URL.cs
- ContextQuery.cs
- FirstMatchCodeGroup.cs
- DbProviderFactory.cs
- InvokeAction.cs
- TabItem.cs
- DataObjectPastingEventArgs.cs
- TemplatedControlDesigner.cs
- XmlIgnoreAttribute.cs
- UpdateManifestForBrowserApplication.cs
- InstanceCreationEditor.cs
- RestClientProxyHandler.cs
- ImagingCache.cs
- SocketPermission.cs
- PropertyOverridesDialog.cs
- MarkupCompilePass2.cs
- OdbcConnectionStringbuilder.cs
- AccessKeyManager.cs
- CustomAttributeBuilder.cs
- InvalidOperationException.cs
- CatchBlock.cs
- TdsValueSetter.cs
- ConfigurationLockCollection.cs
- XamlSerializer.cs
- UntypedNullExpression.cs
- PageFunction.cs
- ContentValidator.cs
- CryptoApi.cs
- OleDbRowUpdatingEvent.cs
- VerificationAttribute.cs
- DataMisalignedException.cs
- IApplicationTrustManager.cs
- UnsafeNativeMethodsMilCoreApi.cs
- LocalizabilityAttribute.cs
- BypassElementCollection.cs
- RegexCapture.cs
- AlphaSortedEnumConverter.cs
- PtsPage.cs
- StorageConditionPropertyMapping.cs
- Rect.cs
- FilterableAttribute.cs
- ListControl.cs
- OdbcConnectionOpen.cs
- BaseDataBoundControl.cs
- PerfProviderCollection.cs
- EmbeddedObject.cs
- LinearKeyFrames.cs
- HttpProfileGroupBase.cs
- PlaceHolder.cs
- DefaultValueAttribute.cs
- GlyphInfoList.cs
- PermissionSet.cs
- ReadOnlyDataSourceView.cs
- UriParserTemplates.cs
- AuthorizationSection.cs
- WebPartCloseVerb.cs
- GcHandle.cs
- XpsSerializerFactory.cs
- DataControlField.cs
- HttpApplicationFactory.cs
- SchemaManager.cs
- Bold.cs
- ProtocolsConfiguration.cs
- ProfileManager.cs
- DataGridPagerStyle.cs
- KeyValuePairs.cs
- Root.cs
- FormViewCommandEventArgs.cs
- InvalidDocumentContentsException.cs
- NextPreviousPagerField.cs
- FileUtil.cs
- GridViewDesigner.cs
- TextContainerChangedEventArgs.cs
- webeventbuffer.cs
- TimeEnumHelper.cs
- ECDiffieHellmanCngPublicKey.cs
- OrderedDictionary.cs
- HttpCookie.cs
- DirectoryInfo.cs
- InvalidateEvent.cs
- Cursors.cs
- DateTimeValueSerializerContext.cs
- Debug.cs
- XmlTypeAttribute.cs
- EdmConstants.cs
- CommandEventArgs.cs
- DataObjectMethodAttribute.cs
- EventLogPermissionEntry.cs
- JapaneseLunisolarCalendar.cs
- XmlSchemaComplexContent.cs
- LinkLabel.cs
- CardSpaceShim.cs
- ImmComposition.cs
- ProfileGroupSettings.cs
- CustomBindingElement.cs
- SQLInt16.cs
- CLRBindingWorker.cs
- basecomparevalidator.cs
- TdsEnums.cs
- CodeTypeReference.cs