Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / IPHostEntry.cs / 1305376 / IPHostEntry.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { // Host information ////// public class IPHostEntry { string hostName; string[] aliases; IPAddress[] addressList; ///Provides a container class for Internet host address information.. ////// ////// Contains the DNS /// name of the host. /// ////// public string HostName { get { return hostName; } set { hostName = value; } } ////// ////// Provides an /// array of strings containing other DNS names that resolve to the IP addresses /// in ///. /// /// public string[] Aliases { get { return aliases; } set { aliases = value; } } ////// ////// Provides an /// array of ///objects. /// /// public IPAddress[] AddressList { get { return addressList; } set { addressList = value; } } } // class IPHostEntry } // namespace System.Net // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { // Host information ////// public class IPHostEntry { string hostName; string[] aliases; IPAddress[] addressList; ///Provides a container class for Internet host address information.. ////// ////// Contains the DNS /// name of the host. /// ////// public string HostName { get { return hostName; } set { hostName = value; } } ////// ////// Provides an /// array of strings containing other DNS names that resolve to the IP addresses /// in ///. /// /// public string[] Aliases { get { return aliases; } set { aliases = value; } } ////// ////// Provides an /// array of ///objects. /// /// public IPAddress[] AddressList { get { return addressList; } set { addressList = value; } } } // class IPHostEntry } // namespace System.Net // 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
- OpCodes.cs
- CatalogZoneBase.cs
- DeferrableContentConverter.cs
- UrlMappingsModule.cs
- SmiMetaDataProperty.cs
- InvalidTimeZoneException.cs
- WrapPanel.cs
- AnimatedTypeHelpers.cs
- IdentityHolder.cs
- PriorityQueue.cs
- CachedCompositeFamily.cs
- DataPagerFieldItem.cs
- ApplicationException.cs
- SwitchLevelAttribute.cs
- WsatConfiguration.cs
- TransformProviderWrapper.cs
- ClientEventManager.cs
- StretchValidation.cs
- RotateTransform.cs
- CreateRefExpr.cs
- XpsFilter.cs
- DbReferenceCollection.cs
- FileDialog_Vista.cs
- SafeCloseHandleCritical.cs
- IfJoinedCondition.cs
- CompilerResults.cs
- Monitor.cs
- SpeechRecognizer.cs
- DataGridViewLinkCell.cs
- PanelDesigner.cs
- DiscoveryOperationContext.cs
- elementinformation.cs
- ResourcePermissionBase.cs
- ListBoxAutomationPeer.cs
- RtType.cs
- XsltLoader.cs
- ExpressionCopier.cs
- EntitySetBase.cs
- NamedPipeAppDomainProtocolHandler.cs
- XmlWrappingReader.cs
- PrintControllerWithStatusDialog.cs
- _Semaphore.cs
- TreeViewImageIndexConverter.cs
- shaperfactory.cs
- InnerItemCollectionView.cs
- NoneExcludedImageIndexConverter.cs
- CompositeActivityDesigner.cs
- StrongNameUtility.cs
- BitmapEffectInput.cs
- DataRelation.cs
- CultureTable.cs
- LeafCellTreeNode.cs
- SamlAuthenticationStatement.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- MenuCommandService.cs
- OrderedEnumerableRowCollection.cs
- Merger.cs
- NamespaceCollection.cs
- DetailsViewCommandEventArgs.cs
- XmlUnspecifiedAttribute.cs
- UDPClient.cs
- NumberSubstitution.cs
- PageThemeParser.cs
- ZipPackagePart.cs
- ManagementPath.cs
- CodePropertyReferenceExpression.cs
- HMACSHA256.cs
- ReliableMessagingHelpers.cs
- SqlConnection.cs
- InvokeSchedule.cs
- Base64Stream.cs
- Switch.cs
- StateBag.cs
- RuntimeConfigurationRecord.cs
- WpfSharedXamlSchemaContext.cs
- CodeArgumentReferenceExpression.cs
- DoubleUtil.cs
- WebCategoryAttribute.cs
- ResumeStoryboard.cs
- SqlWriter.cs
- StrokeNode.cs
- QueryOpeningEnumerator.cs
- InvalidPropValue.cs
- Helpers.cs
- SchemaNames.cs
- LifetimeServices.cs
- ModelPropertyCollectionImpl.cs
- DataGridViewElement.cs
- XmlArrayAttribute.cs
- StackBuilderSink.cs
- Component.cs
- GeometryCollection.cs
- Compiler.cs
- MetadataCache.cs
- WriteableBitmap.cs
- System.Data.OracleClient_BID.cs
- ApplicationContext.cs
- Bookmark.cs
- AssemblyCache.cs
- RecordConverter.cs