mscorlib(4.0.0.0) API with additions
PingCompletedEventArgs.cs
1
using
System
.
ComponentModel
;
2
3
namespace
System.Net.NetworkInformation
4
{
6
public
class
PingCompletedEventArgs
:
AsyncCompletedEventArgs
7
{
8
private
PingReply
reply;
9
12
public
PingReply
Reply
=> reply;
13
14
internal
PingCompletedEventArgs
(
PingReply
reply,
Exception
error,
bool
cancelled,
object
userToken)
15
: base(error, cancelled, userToken)
16
{
17
this.reply = reply;
18
}
19
}
20
}
System
Definition:
__Canon.cs:3
System.Net.NetworkInformation.PingCompletedEventArgs
Provides data for the E:System.Net.NetworkInformation.Ping.PingCompleted event.
Definition:
PingCompletedEventArgs.cs:6
System.Net.NetworkInformation
Definition:
AdapterAddressFlags.cs:1
System.Net.NetworkInformation.PingReply
Provides information about the status and data resulting from a Overload:System.Net....
Definition:
PingReply.cs:6
System.ComponentModel.AsyncCompletedEventArgs
Provides data for the MethodNameCompleted event.
Definition:
AsyncCompletedEventArgs.cs:9
System.Net.NetworkInformation.PingCompletedEventArgs.Reply
PingReply Reply
Gets an object that contains data that describes an attempt to send an Internet Control Message Proto...
Definition:
PingCompletedEventArgs.cs:12
System.ComponentModel
Definition:
AddingNewEventArgs.cs:3
System.Exception
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition:
Exception.cs:22
All cs
System.Net.NetworkInformation
PingCompletedEventArgs.cs
Generated by
1.8.15