mscorlib(4.0.0.0) API with additions
PingException.cs
2 
4 {
8  {
9  internal PingException()
10  {
11  }
12 
16  protected PingException(SerializationInfo serializationInfo, StreamingContext streamingContext)
17  : base(serializationInfo, streamingContext)
18  {
19  }
20 
23  public PingException(string message)
24  : base(message)
25  {
26  }
27 
31  public PingException(string message, Exception innerException)
32  : base(message, innerException)
33  {
34  }
35  }
36 }
PingException(SerializationInfo serializationInfo, StreamingContext streamingContext)
Initializes a new instance of the T:System.Net.NetworkInformation.PingException class with serialized...
Definition: __Canon.cs:3
The exception that is thrown when a Overload:System.Net.NetworkInformation.Ping.Send or Overload:Syst...
Definition: PingException.cs:7
Describes the source and destination of a given serialized stream, and provides an additional caller-...
PingException(string message, Exception innerException)
Initializes a new instance of the T:System.Net.NetworkInformation.PingException class using the speci...
PingException(string message)
Initializes a new instance of the T:System.Net.NetworkInformation.PingException class using the speci...
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
Specifies that the class can be serialized.
The exception that is thrown when a method call is invalid for the object's current state.