Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / IPHostEntry.cs / 1 / 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
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataTablePropertyDescriptor.cs
- ApplyImportsAction.cs
- FixedDocument.cs
- ActivityMarkupSerializationProvider.cs
- ViewEvent.cs
- ThreadStartException.cs
- InvalidComObjectException.cs
- WebBrowserNavigatedEventHandler.cs
- TextFragmentEngine.cs
- BrushConverter.cs
- SemanticResolver.cs
- SqlDataRecord.cs
- KeyManager.cs
- WebSysDefaultValueAttribute.cs
- HandlerWithFactory.cs
- OutputCacheSection.cs
- XmlSecureResolver.cs
- RsaSecurityTokenAuthenticator.cs
- PackagingUtilities.cs
- FontFaceLayoutInfo.cs
- SecurityRuntime.cs
- CommandID.cs
- Gdiplus.cs
- ColorMatrix.cs
- _NTAuthentication.cs
- VisualCollection.cs
- URL.cs
- Win32.cs
- InternalPolicyElement.cs
- CroppedBitmap.cs
- WasNotInstalledException.cs
- LicenseException.cs
- HtmlImage.cs
- Triangle.cs
- Random.cs
- MaskInputRejectedEventArgs.cs
- IPAddressCollection.cs
- LineBreakRecord.cs
- TimelineGroup.cs
- MatrixAnimationUsingKeyFrames.cs
- MediaContextNotificationWindow.cs
- SqlDeflator.cs
- TableProviderWrapper.cs
- Automation.cs
- TableLayoutRowStyleCollection.cs
- ChangeTracker.cs
- SEHException.cs
- AutomationIdentifierGuids.cs
- LazyTextWriterCreator.cs
- WebContentFormatHelper.cs
- handlecollector.cs
- ErrorFormatterPage.cs
- AliasExpr.cs
- XmlNamedNodeMap.cs
- TextBlockAutomationPeer.cs
- SystemResourceHost.cs
- TerminatorSinks.cs
- AnnotationHighlightLayer.cs
- Attributes.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- CodeGroup.cs
- LineMetrics.cs
- graph.cs
- ApplicationFileParser.cs
- ExceptionUtil.cs
- MessageBox.cs
- Relationship.cs
- AsymmetricKeyExchangeFormatter.cs
- PresentationSource.cs
- ConfigXmlAttribute.cs
- CodeEntryPointMethod.cs
- AppDomainProtocolHandler.cs
- Repeater.cs
- FaultException.cs
- BaseConfigurationRecord.cs
- Lease.cs
- UnsafeNetInfoNativeMethods.cs
- SqlProvider.cs
- DBCommandBuilder.cs
- TraceFilter.cs
- StructuredProperty.cs
- SafeCancelMibChangeNotify.cs
- ClosableStream.cs
- WindowsSecurityToken.cs
- RegexGroup.cs
- IfElseDesigner.xaml.cs
- SortedDictionary.cs
- TextParaLineResult.cs
- SecurityElement.cs
- PointValueSerializer.cs
- Triplet.cs
- WebBrowserSiteBase.cs
- OwnerDrawPropertyBag.cs
- GetPageCompletedEventArgs.cs
- XPathMultyIterator.cs
- UIElementIsland.cs
- DrawingImage.cs
- BamlWriter.cs
- DirectoryNotFoundException.cs
- EntityContainerEntitySet.cs