Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Net / System / Net / NetworkInformation / GatewayIPAddressInformationCollection.cs / 1 / 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 null; } /// 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. 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 null; } /// 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
- XmlSerializerOperationGenerator.cs
- NonVisualControlAttribute.cs
- AccessDataSourceView.cs
- VBIdentifierName.cs
- StringReader.cs
- DispatcherObject.cs
- GetLedgerRequest.cs
- XmlSerializationWriter.cs
- ObjectAnimationBase.cs
- TextRangeProviderWrapper.cs
- MinMaxParagraphWidth.cs
- IntranetCredentialPolicy.cs
- NeutralResourcesLanguageAttribute.cs
- HttpDigestClientElement.cs
- ManualWorkflowSchedulerService.cs
- BindingListCollectionView.cs
- FormsAuthenticationUser.cs
- LostFocusEventManager.cs
- TextSelection.cs
- WebBrowserUriTypeConverter.cs
- PointAnimationUsingPath.cs
- ClaimTypeElement.cs
- SamlDelegatingWriter.cs
- DodSequenceMerge.cs
- RadioButton.cs
- HttpCapabilitiesBase.cs
- WebBrowserEvent.cs
- ContainerAction.cs
- Axis.cs
- PagedDataSource.cs
- Thickness.cs
- HttpException.cs
- PnrpPermission.cs
- ZipIORawDataFileBlock.cs
- FileInfo.cs
- ChangeProcessor.cs
- SystemIcmpV4Statistics.cs
- ResourcesBuildProvider.cs
- ParallelActivityDesigner.cs
- HtmlGenericControl.cs
- UserControl.cs
- ChildTable.cs
- ToolboxComponentsCreatingEventArgs.cs
- COM2PictureConverter.cs
- IListConverters.cs
- ModifiableIteratorCollection.cs
- OLEDB_Enum.cs
- BasePropertyDescriptor.cs
- DeviceContext2.cs
- PenThreadWorker.cs
- UITypeEditor.cs
- DashStyle.cs
- PackageRelationshipCollection.cs
- TraceContextRecord.cs
- WebException.cs
- InfoCardSymmetricCrypto.cs
- HttpProfileGroupBase.cs
- StringFormat.cs
- InkCanvasSelectionAdorner.cs
- XPathScanner.cs
- HtmlHistory.cs
- OperationInvokerTrace.cs
- SimpleBitVector32.cs
- VerificationAttribute.cs
- DesignerGenericWebPart.cs
- StateInitializationDesigner.cs
- CopyOnWriteList.cs
- SerializationTrace.cs
- CodeDomLocalizationProvider.cs
- InteropAutomationProvider.cs
- ToolStripScrollButton.cs
- UnwrappedTypesXmlSerializerManager.cs
- TableProvider.cs
- WmlListAdapter.cs
- MetadataItemCollectionFactory.cs
- DynamicActivityProperty.cs
- BeginEvent.cs
- ReceiveContextCollection.cs
- TypeToken.cs
- CompilerErrorCollection.cs
- EntryWrittenEventArgs.cs
- QilPatternVisitor.cs
- RecipientInfo.cs
- ProfileSettings.cs
- FilterUserControlBase.cs
- ImmutableDispatchRuntime.cs
- CodeObjectCreateExpression.cs
- EventDescriptorCollection.cs
- SamlDoNotCacheCondition.cs
- DefaultWorkflowLoaderService.cs
- SafeSystemMetrics.cs
- ListViewSortEventArgs.cs
- ModifierKeysConverter.cs
- DocumentReference.cs
- TypedServiceChannelBuilder.cs
- CompositeTypefaceMetrics.cs
- DataControlFieldHeaderCell.cs
- StorageEndPropertyMapping.cs
- ChannelPoolSettings.cs
- ApplicationSecurityManager.cs