Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / NetworkInformation / ipaddressinformationcollection.cs / 1305376 / ipaddressinformationcollection.cs
using System.Collections.Generic; using System.Collections.ObjectModel; namespace System.Net.NetworkInformation{ public class IPAddressInformationCollection :ICollection{ Collection addresses = new Collection (); internal IPAddressInformationCollection(){ } /// public virtual void CopyTo(IPAddressInformation[] array, int offset) { addresses.CopyTo(array,offset); } /// public virtual int Count { get { return addresses.Count; } } public virtual bool IsReadOnly { get { return true; } } /// public virtual void Add(IPAddressInformation address) { throw new NotSupportedException(SR.GetString(SR.net_collection_readonly)); } internal void InternalAdd(IPAddressInformation address) { addresses.Add(address); } /// public virtual bool Contains(IPAddressInformation address) { return addresses.Contains(address); } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return this.GetEnumerator(); } public virtual IEnumerator GetEnumerator() { return (IEnumerator ) addresses.GetEnumerator(); } public virtual IPAddressInformation this[int index] { get{ return (IPAddressInformation)addresses[index]; } } /// public virtual bool Remove(IPAddressInformation 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
- OleStrCAMarshaler.cs
- _SecureChannel.cs
- SqlNotificationEventArgs.cs
- RangeExpression.cs
- DataContractSerializerOperationFormatter.cs
- SqlNotificationRequest.cs
- Int16.cs
- TabletDeviceInfo.cs
- SmiRequestExecutor.cs
- SpeakInfo.cs
- WindowsSecurityTokenAuthenticator.cs
- BaseUriHelper.cs
- ContentElement.cs
- CellParagraph.cs
- DataBoundLiteralControl.cs
- KeyInterop.cs
- ProgressBar.cs
- XmlSchemaImport.cs
- DriveInfo.cs
- SafeHandle.cs
- ParameterModifier.cs
- TextParaLineResult.cs
- TagNameToTypeMapper.cs
- Matrix3D.cs
- _IPv6Address.cs
- HostingPreferredMapPath.cs
- DataGridTextColumn.cs
- GridEntry.cs
- DispatcherEventArgs.cs
- PrimitiveType.cs
- HttpCookieCollection.cs
- DecimalKeyFrameCollection.cs
- BindableTemplateBuilder.cs
- WebProxyScriptElement.cs
- RelationshipEntry.cs
- FileInfo.cs
- TreeNode.cs
- DataSourceControl.cs
- ToolboxItemFilterAttribute.cs
- ComPlusDiagnosticTraceRecords.cs
- RoleService.cs
- WebHttpBinding.cs
- PropertyGrid.cs
- GeometryGroup.cs
- SqlAliaser.cs
- DefaultWorkflowTransactionService.cs
- CodeParameterDeclarationExpressionCollection.cs
- QueueProcessor.cs
- SmtpNtlmAuthenticationModule.cs
- Event.cs
- DiagnosticStrings.cs
- PersonalizableTypeEntry.cs
- CatalogPart.cs
- LongCountAggregationOperator.cs
- LayoutInformation.cs
- ManualWorkflowSchedulerService.cs
- PropertyKey.cs
- CheckBox.cs
- PathSegmentCollection.cs
- TokenBasedSetEnumerator.cs
- PerformanceCountersElement.cs
- EntityProviderFactory.cs
- InfoCardX509Validator.cs
- GridSplitterAutomationPeer.cs
- VisualBrush.cs
- TextRangeProviderWrapper.cs
- BoundColumn.cs
- MonitorWrapper.cs
- ArgumentException.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- XmlMemberMapping.cs
- CodeIterationStatement.cs
- TemplateBaseAction.cs
- HttpDebugHandler.cs
- CodeMethodReturnStatement.cs
- XPathExpr.cs
- QilInvokeLateBound.cs
- MediaSystem.cs
- oledbconnectionstring.cs
- AnnotationAdorner.cs
- MultiTrigger.cs
- infer.cs
- ChildTable.cs
- AssemblyFilter.cs
- SequenceDesigner.cs
- BooleanFunctions.cs
- AnnotationObservableCollection.cs
- TextDecoration.cs
- ServiceRoute.cs
- Options.cs
- BezierSegment.cs
- ConstNode.cs
- Screen.cs
- ConstraintManager.cs
- Deflater.cs
- EntitySqlQueryBuilder.cs
- ResourceReferenceKeyNotFoundException.cs
- _AutoWebProxyScriptEngine.cs
- errorpatternmatcher.cs
- DirectoryNotFoundException.cs