Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XsltException.cs
- PropertyValueUIItem.cs
- odbcmetadatacolumnnames.cs
- CheckBox.cs
- cookiecontainer.cs
- GlobalDataBindingHandler.cs
- CommonXSendMessage.cs
- ByteKeyFrameCollection.cs
- GroupQuery.cs
- PathStreamGeometryContext.cs
- ProjectionCamera.cs
- SelectionChangedEventArgs.cs
- AtomServiceDocumentSerializer.cs
- ThreadAbortException.cs
- ECDsa.cs
- CloseSequence.cs
- ConfigurationLockCollection.cs
- cache.cs
- HotSpot.cs
- XmlAttributeOverrides.cs
- EditorAttribute.cs
- Gdiplus.cs
- CancellationTokenSource.cs
- BindingNavigator.cs
- ExpressionBinding.cs
- DataObject.cs
- PerspectiveCamera.cs
- WorkflowIdleBehavior.cs
- autovalidator.cs
- CodeParameterDeclarationExpressionCollection.cs
- IBuiltInEvidence.cs
- _HeaderInfo.cs
- SharedPerformanceCounter.cs
- DataTableClearEvent.cs
- DescendantBaseQuery.cs
- BitmapCodecInfo.cs
- ColorAnimationUsingKeyFrames.cs
- AssociatedControlConverter.cs
- DataComponentGenerator.cs
- TypeUsageBuilder.cs
- LayoutUtils.cs
- ConsoleTraceListener.cs
- PropertyChangingEventArgs.cs
- AuthenticationModulesSection.cs
- StaticSiteMapProvider.cs
- CounterSetInstance.cs
- SmuggledIUnknown.cs
- PathBox.cs
- MailWriter.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- WindowProviderWrapper.cs
- SerializationInfoEnumerator.cs
- TableCell.cs
- PolicyAssertionCollection.cs
- cookie.cs
- HideDisabledControlAdapter.cs
- CustomAssemblyResolver.cs
- EventlogProvider.cs
- _ScatterGatherBuffers.cs
- CheckBoxBaseAdapter.cs
- WorkBatch.cs
- Timeline.cs
- ExtensionWindowResizeGrip.cs
- DateTimeUtil.cs
- ViewgenContext.cs
- WinHttpWebProxyFinder.cs
- ToolStripLabel.cs
- FormView.cs
- Win32Exception.cs
- FilterQuery.cs
- AppSecurityManager.cs
- HttpException.cs
- SchemaImporterExtensionsSection.cs
- DataGridParentRows.cs
- _AcceptOverlappedAsyncResult.cs
- DayRenderEvent.cs
- MergeFilterQuery.cs
- EntityDataSourceDataSelection.cs
- HandlerFactoryCache.cs
- ParameterCollection.cs
- PathTooLongException.cs
- BinaryQueryOperator.cs
- Evaluator.cs
- IriParsingElement.cs
- coordinatorscratchpad.cs
- GeometryConverter.cs
- AutoCompleteStringCollection.cs
- RowType.cs
- DivideByZeroException.cs
- SystemException.cs
- ComponentManagerBroker.cs
- ParameterCollection.cs
- DataBoundControlHelper.cs
- RealProxy.cs
- X509CertificateClaimSet.cs
- PageStatePersister.cs
- NumericExpr.cs
- DataGridRelationshipRow.cs
- BaseDataBoundControl.cs
- Column.cs