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