mscorlib(4.0.0.0) API with additions
PingException.cs
1
using
System
.
Runtime
.
Serialization
;
2
3
namespace
System.Net.NetworkInformation
4
{
6
[
Serializable
]
7
public
class
PingException
:
InvalidOperationException
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
}
System.Net.NetworkInformation.PingException.PingException
PingException(SerializationInfo serializationInfo, StreamingContext streamingContext)
Initializes a new instance of the T:System.Net.NetworkInformation.PingException class with serialized...
Definition:
PingException.cs:16
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.Net.NetworkInformation.PingException
The exception that is thrown when a Overload:System.Net.NetworkInformation.Ping.Send or Overload:Syst...
Definition:
PingException.cs:7
System.Net.NetworkInformation
Definition:
AdapterAddressFlags.cs:1
System.Runtime.Serialization.StreamingContext
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Definition:
StreamingContext.cs:9
System.Net.NetworkInformation.PingException.PingException
PingException(string message, Exception innerException)
Initializes a new instance of the T:System.Net.NetworkInformation.PingException class using the speci...
Definition:
PingException.cs:31
System.Net.NetworkInformation.PingException.PingException
PingException(string message)
Initializes a new instance of the T:System.Net.NetworkInformation.PingException class using the speci...
Definition:
PingException.cs:23
System.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
System.Runtime.Serialization.SerializationInfo
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Definition:
SerializationInfo.cs:12
System.Exception
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition:
Exception.cs:22
System.Reflection.TypeAttributes.Serializable
Specifies that the class can be serialized.
System.InvalidOperationException
The exception that is thrown when a method call is invalid for the object's current state.
Definition:
InvalidOperationException.cs:10
All cs
System.Net.NetworkInformation
PingException.cs
Generated by
1.8.15