4 instantiations of IPHostEntry
System (4)
net\System\Net\DNS.cs (4)
69IPHostEntry HostEntry = new IPHostEntry(); 539IPHostEntry ipHostEntry = new IPHostEntry(); 1115hostinfo = new IPHostEntry(); 1178hostinfo = new IPHostEntry();
64 references to IPHostEntry
System (53)
net\System\Net\_AuthenticationState.cs (1)
144IPHostEntry result;
net\System\Net\_AutoWebProxyScriptHelper.cs (4)
305IPHostEntry ipHostEntry = null; 331IPHostEntry ipHostEntry = null; 915IPHostEntry ipHostEntry = null; 948IPHostEntry ipHostEntry = null;
net\System\Net\DNS.cs (45)
60private static IPHostEntry NativeToHostEntry(IntPtr nativePointer) { 69IPHostEntry HostEntry = new IPHostEntry(); 176/// <para>Retrieves the <see cref='System.Net.IPHostEntry'/> 184public static IPHostEntry GetHostByName(string hostName) { 204internal static IPHostEntry InternalGetHostByName(string hostName) { 208internal static IPHostEntry InternalGetHostByName(string hostName, bool includeIPv6) { 210IPHostEntry ipHostEntry = null; 289/// <para>Creates an <see cref='System.Net.IPHostEntry'/> 294public static IPHostEntry GetHostByAddress(string address) { 307IPHostEntry ipHostEntry = InternalGetHostByAddress(IPAddress.Parse(address), false); 323/// <para>Creates an <see cref='System.Net.IPHostEntry'/> instance from an <see cref='System.Net.IPAddress'/> 328public static IPHostEntry GetHostByAddress(IPAddress address) { 339IPHostEntry ipHostEntry = InternalGetHostByAddress(address, false); 346internal static IPHostEntry InternalGetHostByAddress(IPAddress address, bool includeIPv6) 368IPHostEntry hostEntry; 497public static IPHostEntry Resolve(string hostName) { 510IPHostEntry ipHostEntry; 537private static IPHostEntry GetUnresolveAnswer(IPAddress address) 539IPHostEntry ipHostEntry = new IPHostEntry(); 553internal static bool TryInternalResolve(string hostName, out IPHostEntry result) 571IPHostEntry canonicalResult; 600IPHostEntry fqdnResult; 672IPHostEntry hostEntry; 725IPHostEntry hostEntry = GetUnresolveAnswer(address); 787private static IPHostEntry HostResolutionEndHelper(IAsyncResult asyncResult) 816return (IPHostEntry) castedResult.Result; 839public static IPHostEntry EndGetHostByName(IAsyncResult asyncResult) { 842IPHostEntry ipHostEntry = HostResolutionEndHelper(asyncResult); 856public static IPHostEntry GetHostEntry(string hostNameOrAddress) { 869IPHostEntry ipHostEntry; 889public static IPHostEntry GetHostEntry(IPAddress address) { 906IPHostEntry ipHostEntry = InternalGetHostByAddress(address, true); 970public static IPHostEntry EndGetHostEntry(IAsyncResult asyncResult) { 973IPHostEntry ipHostEntry = HostResolutionEndHelper(asyncResult); 994IPHostEntry ipHostEntry = HostResolutionEndHelper(asyncResult); 1029public static IPHostEntry EndResolve(IAsyncResult asyncResult) 1033IPHostEntry ipHostEntry; 1062public static Task<IPHostEntry> GetHostEntryAsync(IPAddress address) 1064return Task<IPHostEntry>.Factory.FromAsync(BeginGetHostEntry, EndGetHostEntry, address, null); 1068public static Task<IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) 1070return Task<IPHostEntry>.Factory.FromAsync(BeginGetHostEntry, EndGetHostEntry, hostNameOrAddress, null); 1074private unsafe static IPHostEntry GetAddrInfo(string name) { 1075IPHostEntry hostEntry; 1086private unsafe static SocketError TryGetAddrInfo(string name, out IPHostEntry hostinfo) 1092private unsafe static SocketError TryGetAddrInfo(string name, AddressInfoHints flags, out IPHostEntry hostinfo)
net\System\Net\ServicePoint.cs (2)
1591IPHostEntry ipHostEntry = null; 1669private void SetAddressList(IPHostEntry ipHostEntry)
net\System\Net\SocketPermission.cs (1)
982IPHostEntry ipHostEntry;
System.Runtime.Remoting (5)
channels\core\corechannel.cs (5)
80private static volatile IPHostEntry s_CachedIPHostEntry = null; 187IPHostEntry host = Dns.GetHostEntry(machineName); 214internal static bool IsLocalIpAddress(IPHostEntry host, AddressFamily addressFamily, IPAddress remoteAddress) 250IPHostEntry ipEntries = Dns.GetHostEntry(hostName); 271internal static IPAddress GetMachineAddress(IPHostEntry host, AddressFamily addressFamily)
System.ServiceModel (6)
System\ServiceModel\Channels\DnsCache.cs (5)
63public static IPHostEntry Resolve(Uri uri) 66IPHostEntry hostEntry = null; 121IPHostEntry hostEntry; 124public DnsCacheEntry(IPHostEntry hostEntry, DateTime timeStamp) 130public IPHostEntry HostEntry
System\ServiceModel\Channels\SocketConnection.cs (1)
1637IPHostEntry hostEntry = null;