Home
last modified time | relevance | path

Searched refs:hostNameOrAddress (Results 1 – 25 of 36) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Ping/src/System/Net/NetworkInformation/
H A DPing.cs124 public PingReply Send(string hostNameOrAddress) in Send() argument
129 public PingReply Send(string hostNameOrAddress, int timeout) in Send() argument
131 return Send(hostNameOrAddress, timeout, DefaultSendBuffer); in Send()
146 return Send(hostNameOrAddress, timeout, buffer, null); in Send()
164 public void SendAsync(string hostNameOrAddress, object userToken) in SendAsync() argument
186 SendAsync(hostNameOrAddress, timeout, buffer, null, userToken); in SendAsync()
220 public Task<PingReply> SendPingAsync(string hostNameOrAddress) in SendPingAsync() argument
242 return SendPingAsync(hostNameOrAddress, timeout, buffer, null); in SendPingAsync()
298 if (string.IsNullOrEmpty(hostNameOrAddress)) in SendPingAsync()
300 throw new ArgumentNullException(nameof(hostNameOrAddress)); in SendPingAsync()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net/
H A DDns.cs170 if (hostNameOrAddress == null) in BeginGetHostAddresses()
172 if (hostNameOrAddress == "0.0.0.0" || hostNameOrAddress == "::0") in BeginGetHostAddresses()
192 if (hostNameOrAddress == null) in BeginGetHostEntry()
194 if (hostNameOrAddress == "0.0.0.0" || hostNameOrAddress == "::0") in BeginGetHostEntry()
384 if (hostNameOrAddress == null) in GetHostEntry()
386 if (hostNameOrAddress == "0.0.0.0" || hostNameOrAddress == "::0") in GetHostEntry()
393 if (hostNameOrAddress.Length > 0 && IPAddress.TryParse (hostNameOrAddress, out addr)) in GetHostEntry()
397 return GetHostByName (hostNameOrAddress); in GetHostEntry()
411 if (hostNameOrAddress == null) in GetHostAddresses()
414 if (hostNameOrAddress == "0.0.0.0" || hostNameOrAddress == "::0") in GetHostAddresses()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Ping/ref/
H A DSystem.Net.Ping.cs44 public PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
45 public PingReply Send(string hostNameOrAddress, int timeout) { throw null; } in Send() argument
48 public PingReply Send(string hostNameOrAddress, int timeout, byte[] buffer) { throw null; } in Send() argument
50 …public PingReply Send(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInfo… in Send() argument
52 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
53 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
56 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
58 …public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, System.Net.NetworkInfo… in SendAsync() argument
65 ….Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress) { throw nul… in SendPingAsync() argument
66 ….Task<System.Net.NetworkInformation.PingReply> SendPingAsync(string hostNameOrAddress, int timeout… in SendPingAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net.NetworkInformation/
H A DPing.cs188 public PingReply Send (string hostNameOrAddress) in Send() argument
190 return Send (hostNameOrAddress, default_timeout); in Send()
193 public PingReply Send (string hostNameOrAddress, int timeout) in Send() argument
195 return Send (hostNameOrAddress, timeout, default_buffer); in Send()
205 IPAddress [] addresses = Dns.GetHostAddresses (hostNameOrAddress); in Send()
372 SendAsync (hostNameOrAddress, timeout, default_buffer, userToken); in SendAsync()
375 public void SendAsync (string hostNameOrAddress, object userToken) in SendAsync() argument
377 SendAsync (hostNameOrAddress, default_timeout, userToken); in SendAsync()
580 return SendPingAsync (hostNameOrAddress, timeout, default_buffer); in SendPingAsync()
583 public Task<PingReply> SendPingAsync (string hostNameOrAddress) in SendPingAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.NameResolution/src/System/Net/
H A DDNS.cs451 public static IPHostEntry GetHostEntry(string hostNameOrAddress) in GetHostEntry() argument
456 if (hostNameOrAddress == null) in GetHostEntry()
458 throw new ArgumentNullException(nameof(hostNameOrAddress)); in GetHostEntry()
464 if (IPAddress.TryParse(hostNameOrAddress, out address)) in GetHostEntry()
475 ipHostEntry = InternalGetHostByName(hostNameOrAddress, true); in GetHostEntry()
504 public static IPAddress[] GetHostAddresses(string hostNameOrAddress) in GetHostAddresses() argument
509 if (hostNameOrAddress == null) in GetHostAddresses()
511 throw new ArgumentNullException(nameof(hostNameOrAddress)); in GetHostAddresses()
517 if (IPAddress.TryParse(hostNameOrAddress, out address)) in GetHostAddresses()
633 hostNameOrAddress, in GetHostAddressesAsync()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/NetworkInformation/
H A Dping.cs258 public PingReply Send (string hostNameOrAddress) { in Send() argument
263 public PingReply Send (string hostNameOrAddress, int timeout) { in Send() argument
277 return Send (hostNameOrAddress, timeout, buffer, null); in Send()
285 if (ValidationHelper.IsBlankString(hostNameOrAddress)) { in Send()
290 if (!IPAddress.TryParse(hostNameOrAddress, out address)) { in Send()
292 address = Dns.GetHostAddresses(hostNameOrAddress)[0]; in Send()
362 public void SendAsync (string hostNameOrAddress, object userToken) { in SendAsync() argument
387 SendAsync (hostNameOrAddress, timeout, buffer, null, userToken); in SendAsync()
399 if (ValidationHelper.IsBlankString(hostNameOrAddress)) { in SendAsync()
416 if (IPAddress.TryParse(hostNameOrAddress, out address)) in SendAsync()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.NameResolution/ref/
H A DSystem.Net.NameResolution.cs13 …public static IAsyncResult BeginGetHostAddresses(string hostNameOrAddress, AsyncCallback requestCa… in BeginGetHostAddresses() argument
16 …public static IAsyncResult BeginGetHostEntry(string hostNameOrAddress, AsyncCallback requestCallba… in BeginGetHostEntry() argument
26 public static IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
33 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
34 public static IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
37 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A DDNS.cs856 public static IPHostEntry GetHostEntry(string hostNameOrAddress) { in NativeToHostEntry() argument
857 if(Logging.On)Logging.Enter(Logging.Sockets, "DNS", "GetHostEntry", hostNameOrAddress); in NativeToHostEntry()
863 if (hostNameOrAddress == null) { in NativeToHostEntry()
870 if (IPAddress.TryParse(hostNameOrAddress, out address)) in NativeToHostEntry()
881 ipHostEntry = InternalGetHostByName(hostNameOrAddress, true); in NativeToHostEntry()
913 public static IPAddress[] GetHostAddresses(string hostNameOrAddress) { in NativeToHostEntry() argument
920 if (hostNameOrAddress == null) { in NativeToHostEntry()
927 if (IPAddress.TryParse(hostNameOrAddress, out address)) in NativeToHostEntry()
939 addresses = InternalGetHostByName(hostNameOrAddress, true).AddressList; in NativeToHostEntry()
1056 public static Task<IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) in NativeToHostEntry() argument
[all …]
/dports/lang/mono-basic/mono-basic-4.7/vbruntime/Microsoft.VisualBasic/Microsoft.VisualBasic.Devices/
H A DNetwork.vb127 Public Function Ping(ByVal hostNameOrAddress As String) As Boolean
128 Return Ping(hostNameOrAddress, 500)
138 Public Function Ping(ByVal hostNameOrAddress As String, ByVal timeout As Integer) As Boolean
150 result = worker.Send(hostNameOrAddress, timeout)
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKMap/GKMap.Core/
H A DGMaps.cs388 public static bool PingNetwork(string hostNameOrAddress) in PingNetwork() argument
397 PingReply reply = p.Send(hostNameOrAddress, timeout, buffer); in PingNetwork()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/src/System/Data/SqlClient/SNI/
H A DSNIProxy.cs339 private static byte[] GetSqlServerSPN(string hostNameOrAddress, string portOrInstanceName) in GetSqlServerSPN() argument
341 Debug.Assert(!string.IsNullOrWhiteSpace(hostNameOrAddress)); in GetSqlServerSPN()
342 IPHostEntry hostEntry = Dns.GetHostEntry(hostNameOrAddress); in GetSqlServerSPN()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A DSystem.cs5454 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
5455 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
5463 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
5465 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
7635 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
7636 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
7637 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
7644 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
7645 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
7646 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/
H A DSystem.cs5491 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
5492 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
5500 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
5502 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
7711 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
7712 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
7713 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
7720 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
7721 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
7722 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monodroid/
H A DSystem.cs5452 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
5453 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
5461 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
5463 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
7633 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
7634 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
7635 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
7642 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
7643 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
7644 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/
H A DSystem.cs5487 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
5488 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
5496 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
5498 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
7707 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
7708 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
7709 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
7716 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
7717 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
7718 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.2/
H A DSystem.cs8122 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
8123 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
8131 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
8133 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
10826 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
10827 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
10828 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
10835 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
10836 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
10837 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.1/
H A DSystem.cs8151 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
8152 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
8160 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
8162 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
10858 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
10859 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
10860 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
10867 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
10868 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
10869 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6/
H A DSystem.cs8150 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
8151 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
8159 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
8161 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
10856 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
10857 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
10858 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
10865 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
10866 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
10867 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.1/
H A DSystem.cs8122 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
8123 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
8131 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
8133 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
10826 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
10827 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
10828 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
10835 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
10836 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
10837 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5/
H A DSystem.cs8122 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
8123 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
8131 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
8133 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
10826 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
10827 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
10828 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
10835 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
10836 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
10837 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]
H A DMicrosoft.VisualBasic.cs1466 public bool Ping(string hostNameOrAddress) { throw null; } in Ping() argument
1468 public bool Ping(string hostNameOrAddress, int timeout) { throw null; } in Ping() argument
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/
H A DSystem.cs8141 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
8142 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
8150 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
8152 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
10815 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
10816 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
10817 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
10824 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
10825 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
10826 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7.1/
H A DSystem.cs8410 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
8412 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
8420 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
8424 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
11099 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
11100 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
11101 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
11114 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
11116 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
11118 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.2/
H A DSystem.cs8151 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
8152 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
8160 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
8162 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
10858 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
10859 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
10860 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
10867 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
10868 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
10869 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7/
H A DSystem.cs8385 … public static System.Net.IPAddress[] GetHostAddresses(string hostNameOrAddress) { throw null; } in GetHostAddresses() argument
8387 …ing.Tasks.Task<System.Net.IPAddress[]> GetHostAddressesAsync(string hostNameOrAddress) { throw nul… in GetHostAddressesAsync() argument
8395 public static System.Net.IPHostEntry GetHostEntry(string hostNameOrAddress) { throw null; } in GetHostEntry() argument
8399 …reading.Tasks.Task<System.Net.IPHostEntry> GetHostEntryAsync(string hostNameOrAddress) { throw nul… in GetHostEntryAsync() argument
11074 … public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress) { throw null; } in Send() argument
11075 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout) { throw… in Send() argument
11076 …public System.Net.NetworkInformation.PingReply Send(string hostNameOrAddress, int timeout, byte[] … in Send() argument
11089 … public void SendAsync(string hostNameOrAddress, int timeout, byte[] buffer, object userToken) { } in SendAsync() argument
11091 public void SendAsync(string hostNameOrAddress, int timeout, object userToken) { } in SendAsync() argument
11093 public void SendAsync(string hostNameOrAddress, object userToken) { } in SendAsync() argument
[all …]

12