5 instantiations of PingReply
System (5)
net\System\Net\NetworkInformation\ping.cs (5)
231
reply = new
PingReply
(icmp6Reply,buffer.DangerousGetHandle(),ping.sendSize);
235
reply = new
PingReply
(icmpReply);
716
return new
PingReply
((IPStatus)error); // Synchronous IPStatus errors
729
reply = new
PingReply
(icmp6Reply, replyBuffer.DangerousGetHandle(), sendSize);
733
reply = new
PingReply
(icmpReply);
26 references to PingReply
System (26)
net\System\Net\NetworkInformation\ping.cs (26)
18
PingReply
reply;
20
internal PingCompletedEventArgs (
PingReply
reply, Exception error, bool cancelled, object userToken):base(error,cancelled,userToken) {
23
public
PingReply
Reply{get {return reply;}}
227
PingReply
reply;
258
public
PingReply
Send (string hostNameOrAddress) {
263
public
PingReply
Send (string hostNameOrAddress, int timeout) {
268
public
PingReply
Send (IPAddress address) {
272
public
PingReply
Send (IPAddress address, int timeout) {
276
public
PingReply
Send (string hostNameOrAddress, int timeout, byte[] buffer) {
280
public
PingReply
Send (IPAddress address, int timeout, byte[] buffer) {
284
public
PingReply
Send (string hostNameOrAddress, int timeout, byte[] buffer, PingOptions options) {
306
public
PingReply
Send (IPAddress address, int timeout, byte[] buffer, PingOptions options) {
495
public Task<
PingReply
> SendPingAsync(IPAddress address)
501
public Task<
PingReply
> SendPingAsync(string hostNameOrAddress)
507
public Task<
PingReply
> SendPingAsync(IPAddress address, int timeout)
513
public Task<
PingReply
> SendPingAsync(string hostNameOrAddress, int timeout)
519
public Task<
PingReply
> SendPingAsync(IPAddress address, int timeout, byte[] buffer)
525
public Task<
PingReply
> SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer)
531
public Task<
PingReply
> SendPingAsync(IPAddress address, int timeout, byte[] buffer, PingOptions options)
537
public Task<
PingReply
> SendPingAsync(string hostNameOrAddress, int timeout, byte[] buffer, PingOptions options)
542
private Task<
PingReply
> SendPingAsyncCore(Action<TaskCompletionSource<
PingReply
>> sendAsync)
545
var tcs = new TaskCompletionSource<
PingReply
>();
564
private void HandleCompletion(TaskCompletionSource<
PingReply
> tcs, PingCompletedEventArgs e, PingCompletedEventHandler handler)
626
private
PingReply
InternalSend (IPAddress address, byte[] buffer, int timeout, PingOptions options, bool async) {
726
PingReply
reply;