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
- _RequestCacheProtocol.cs
- DesignerActionItem.cs
- HttpHandlerAction.cs
- RuntimeIdentifierPropertyAttribute.cs
- SerializationUtilities.cs
- TdsParser.cs
- StringBuilder.cs
- GridViewRowCollection.cs
- TemplateAction.cs
- QilFunction.cs
- NumericUpDown.cs
- PopupRootAutomationPeer.cs
- EntityProxyFactory.cs
- FileNotFoundException.cs
- NullReferenceException.cs
- XPathMessageFilter.cs
- StreamInfo.cs
- LayoutEngine.cs
- AddInBase.cs
- BulletedList.cs
- DetailsViewPagerRow.cs
- ProfileEventArgs.cs
- TimeSpanConverter.cs
- BinaryMethodMessage.cs
- XmlNamespaceMapping.cs
- PropertyGeneratedEventArgs.cs
- ObjectStateManager.cs
- ImportCatalogPart.cs
- XmlFormatMapping.cs
- Point3DAnimation.cs
- SqlDataSourceCommandEventArgs.cs
- DataGrid.cs
- BaseParagraph.cs
- ListBoxItemWrapperAutomationPeer.cs
- OperatingSystem.cs
- UnsafeNativeMethods.cs
- ServiceMetadataBehavior.cs
- ArrayList.cs
- TrackingLocationCollection.cs
- Constant.cs
- RSAPKCS1KeyExchangeFormatter.cs
- DependencyPropertyConverter.cs
- Keywords.cs
- AssertSection.cs
- SqlClientMetaDataCollectionNames.cs
- ListDictionary.cs
- FormViewInsertEventArgs.cs
- Visitor.cs
- QuaternionRotation3D.cs
- SrgsGrammar.cs
- SerializerDescriptor.cs
- RegexCharClass.cs
- SpecialFolderEnumConverter.cs
- XmlDeclaration.cs
- TextTreeRootTextBlock.cs
- MergeLocalizationDirectives.cs
- ConfigXmlAttribute.cs
- RichTextBoxContextMenu.cs
- SessionIDManager.cs
- ObjectListCommandCollection.cs
- followingquery.cs
- DrawingGroup.cs
- ObjectStateFormatter.cs
- IntersectQueryOperator.cs
- SolidColorBrush.cs
- CodeIdentifiers.cs
- Point3DConverter.cs
- TextEndOfLine.cs
- SignatureGenerator.cs
- ZipIOExtraFieldPaddingElement.cs
- PreDigestedSignedInfo.cs
- TreeWalkHelper.cs
- RectangleHotSpot.cs
- ToolStripComboBox.cs
- PageRequestManager.cs
- XPathChildIterator.cs
- SlotInfo.cs
- TextSpanModifier.cs
- SqlDataSourceCommandEventArgs.cs
- SettingsPropertyValue.cs
- WmlTextViewAdapter.cs
- ComboBoxItem.cs
- OptimizedTemplateContentHelper.cs
- AsyncOperationManager.cs
- DbConnectionInternal.cs
- BuildProviderCollection.cs
- WindowsClientElement.cs
- DetailsViewPagerRow.cs
- CompiledQueryCacheKey.cs
- SqlDependencyUtils.cs
- MultiView.cs
- ToolTip.cs
- SmtpClient.cs
- ThreadPool.cs
- OTFRasterizer.cs
- BindingSourceDesigner.cs
- DateTimeParse.cs
- Int16Animation.cs
- MetabaseSettings.cs
- DataGridViewCellValidatingEventArgs.cs