Lines Matching refs:IPHostEntry

60         private static IPHostEntry NativeToHostEntry(IntPtr nativePointer) {  in NativeToHostEntry()
62 internal static IPHostEntry NativeToHostEntry(IntPtr nativePointer) { in NativeToHostEntry()
69 IPHostEntry HostEntry = new IPHostEntry(); in NativeToHostEntry()
184 public static IPHostEntry GetHostByName(string hostName) { in NativeToHostEntry()
204 internal static IPHostEntry InternalGetHostByName(string hostName) { in NativeToHostEntry()
208 internal static IPHostEntry InternalGetHostByName(string hostName, bool includeIPv6) { in NativeToHostEntry()
210 IPHostEntry ipHostEntry = null; in NativeToHostEntry()
294 public static IPHostEntry GetHostByAddress(string address) { in NativeToHostEntry()
307 IPHostEntry ipHostEntry = InternalGetHostByAddress(IPAddress.Parse(address), false); in NativeToHostEntry()
328 public static IPHostEntry GetHostByAddress(IPAddress address) { in NativeToHostEntry()
339 IPHostEntry ipHostEntry = InternalGetHostByAddress(address, false); in NativeToHostEntry()
346 internal static IPHostEntry InternalGetHostByAddress(IPAddress address, bool includeIPv6) in NativeToHostEntry()
368 IPHostEntry hostEntry; in NativeToHostEntry()
497 public static IPHostEntry Resolve(string hostName) { in NativeToHostEntry()
510 IPHostEntry ipHostEntry; in NativeToHostEntry()
537 private static IPHostEntry GetUnresolveAnswer(IPAddress address) in NativeToHostEntry()
539 IPHostEntry ipHostEntry = new IPHostEntry(); in NativeToHostEntry()
553 internal static bool TryInternalResolve(string hostName, out IPHostEntry result) in NativeToHostEntry()
571 IPHostEntry canonicalResult; in NativeToHostEntry()
600 IPHostEntry fqdnResult; in NativeToHostEntry()
672 IPHostEntry hostEntry; in NativeToHostEntry()
725 IPHostEntry hostEntry = GetUnresolveAnswer(address); in NativeToHostEntry()
787 private static IPHostEntry HostResolutionEndHelper(IAsyncResult asyncResult) in NativeToHostEntry()
816 return (IPHostEntry) castedResult.Result; in NativeToHostEntry()
839 public static IPHostEntry EndGetHostByName(IAsyncResult asyncResult) { in NativeToHostEntry()
842 IPHostEntry ipHostEntry = HostResolutionEndHelper(asyncResult); in NativeToHostEntry()
856 public static IPHostEntry GetHostEntry(string hostNameOrAddress) { in NativeToHostEntry()
869 IPHostEntry ipHostEntry; in NativeToHostEntry()
889 public static IPHostEntry GetHostEntry(IPAddress address) { in NativeToHostEntry()
906 IPHostEntry ipHostEntry = InternalGetHostByAddress(address, true); in NativeToHostEntry()
970 public static IPHostEntry EndGetHostEntry(IAsyncResult asyncResult) { in NativeToHostEntry()
973 IPHostEntry ipHostEntry = HostResolutionEndHelper(asyncResult); in NativeToHostEntry()
994 IPHostEntry ipHostEntry = HostResolutionEndHelper(asyncResult); in NativeToHostEntry()
1029 public static IPHostEntry EndResolve(IAsyncResult asyncResult) in NativeToHostEntry()
1033 IPHostEntry ipHostEntry; in NativeToHostEntry()
1062 public static Task<IPHostEntry> GetHostEntryAsync(IPAddress address) in NativeToHostEntry()
1064 … return Task<IPHostEntry>.Factory.FromAsync(BeginGetHostEntry, EndGetHostEntry, address, null); in NativeToHostEntry()
1068 public static Task<IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) in NativeToHostEntry()
1070 …return Task<IPHostEntry>.Factory.FromAsync(BeginGetHostEntry, EndGetHostEntry, hostNameOrAddress, … in NativeToHostEntry()
1074 private unsafe static IPHostEntry GetAddrInfo(string name) { in NativeToHostEntry()
1075 IPHostEntry hostEntry; in NativeToHostEntry()
1086 private unsafe static SocketError TryGetAddrInfo(string name, out IPHostEntry hostinfo) in NativeToHostEntry()
1092 …fe static SocketError TryGetAddrInfo(string name, AddressInfoHints flags, out IPHostEntry hostinfo) in NativeToHostEntry()
1115 hostinfo = new IPHostEntry(); in NativeToHostEntry()
1178 hostinfo = new IPHostEntry(); in NativeToHostEntry()