Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SendPingAsync() [4/8]

Task< PingReply > System.Net.NetworkInformation.Ping.SendPingAsync ( IPAddress address,
int timeout,
byte[] buffer,
PingOptions? options )
inline

Definition at line 323 of file Ping.cs.

324 {
325 CheckArgs(address, timeout, buffer, options);
326 return SendPingAsyncInternal(address, timeout, buffer, options);
327 }
void CheckArgs(int timeout, byte[] buffer, PingOptions options)
Definition Ping.cs:71
async Task< PingReply > SendPingAsyncInternal(IPAddress address, int timeout, byte[] buffer, PingOptions options)
Definition Ping.cs:329

References System.buffer, System.Net.NetworkInformation.Ping.CheckArgs(), System.options, System.Net.NetworkInformation.Ping.SendPingAsyncInternal(), and System.timeout.