Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / NetworkInformation / GatewayIPAddressInformationCollection.cs / 1305376 / GatewayIPAddressInformationCollection.cs
using System.Collections.Generic; using System.Collections.ObjectModel; namespace System.Net.NetworkInformation{ public class GatewayIPAddressInformationCollection :ICollection{ Collection addresses = new Collection (); protected internal GatewayIPAddressInformationCollection(){ } /// public virtual void CopyTo(GatewayIPAddressInformation[] array, int offset) { addresses.CopyTo(array,offset); } /// public virtual int Count { get { return addresses.Count; } } public virtual bool IsReadOnly { get { return true; } } public virtual GatewayIPAddressInformation this[int index] { get{ return (GatewayIPAddressInformation)addresses[index]; } } /// public virtual void Add(GatewayIPAddressInformation address) { throw new NotSupportedException(SR.GetString(SR.net_collection_readonly)); } internal void InternalAdd(GatewayIPAddressInformation address) { addresses.Add(address); } /// public virtual bool Contains(GatewayIPAddressInformation address) { return addresses.Contains(address); } public virtual IEnumerator GetEnumerator() { return (IEnumerator ) addresses.GetEnumerator(); } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return this.GetEnumerator(); } /// public virtual bool Remove(GatewayIPAddressInformation address) { throw new NotSupportedException(SR.GetString(SR.net_collection_readonly)); } /// public virtual void Clear() { throw new NotSupportedException(SR.GetString(SR.net_collection_readonly)); } } } // 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
- HttpWebRequestElement.cs
- HtmlTable.cs
- Ipv6Element.cs
- BinaryFormatterWriter.cs
- EventWaitHandleSecurity.cs
- StackOverflowException.cs
- Rect.cs
- CodeDelegateCreateExpression.cs
- SourceFileInfo.cs
- Walker.cs
- LifetimeServices.cs
- SpinLock.cs
- MtomMessageEncoder.cs
- RuleSettings.cs
- BuildResultCache.cs
- StaticSiteMapProvider.cs
- DataSvcMapFile.cs
- TableTextElementCollectionInternal.cs
- BuildManager.cs
- SvcMapFileSerializer.cs
- PageBorderless.cs
- JoinTreeSlot.cs
- __ConsoleStream.cs
- UrlAuthFailedErrorFormatter.cs
- EventHandlerService.cs
- OptimisticConcurrencyException.cs
- Point4D.cs
- Common.cs
- SqlGenericUtil.cs
- TrimSurroundingWhitespaceAttribute.cs
- Vertex.cs
- CryptoConfig.cs
- SortedList.cs
- SqlSelectStatement.cs
- IsolatedStorageFile.cs
- StatusBar.cs
- CompilationUtil.cs
- MobileCategoryAttribute.cs
- BaseWebProxyFinder.cs
- FontWeightConverter.cs
- XmlCharacterData.cs
- XmlUrlResolver.cs
- CreateSequenceResponse.cs
- HostingEnvironment.cs
- Condition.cs
- QilSortKey.cs
- XPathPatternBuilder.cs
- RawMouseInputReport.cs
- Label.cs
- WebPartChrome.cs
- rsa.cs
- FrameworkContentElementAutomationPeer.cs
- PointCollection.cs
- SourceFileBuildProvider.cs
- ADMembershipUser.cs
- DesignTableCollection.cs
- PropertyValue.cs
- DynamicILGenerator.cs
- RadioButton.cs
- typedescriptorpermissionattribute.cs
- RunInstallerAttribute.cs
- PolicyStatement.cs
- Html32TextWriter.cs
- SecurityManager.cs
- MdiWindowListItemConverter.cs
- Wildcard.cs
- FixedDocument.cs
- ElementMarkupObject.cs
- EntityDataSourceValidationException.cs
- COM2IPerPropertyBrowsingHandler.cs
- InputScopeAttribute.cs
- NetTcpSectionData.cs
- ReferenceEqualityComparer.cs
- RowCache.cs
- PerformanceCounter.cs
- GlobalizationAssembly.cs
- HTMLTagNameToTypeMapper.cs
- HandleCollector.cs
- ResourceContainerWrapper.cs
- GeneralTransform2DTo3DTo2D.cs
- Selector.cs
- PathGradientBrush.cs
- Viewport2DVisual3D.cs
- XmlValidatingReaderImpl.cs
- StdRegProviderWrapper.cs
- HTMLTagNameToTypeMapper.cs
- IncrementalCompileAnalyzer.cs
- TcpProcessProtocolHandler.cs
- PointValueSerializer.cs
- StorageEntityTypeMapping.cs
- InternalBase.cs
- CommonGetThemePartSize.cs
- XPathEmptyIterator.cs
- FormViewDeleteEventArgs.cs
- DataGridViewEditingControlShowingEventArgs.cs
- JpegBitmapEncoder.cs
- HtmlForm.cs
- TemplateControlBuildProvider.cs
- CoreSwitches.cs
- TextBoxBase.cs