PingException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the PingException class.
Overloads
PingException(String) |
Initializes a new instance of the PingException class using the specified message. |
PingException(SerializationInfo, StreamingContext) |
Obsolete.
Initializes a new instance of the PingException class with serialized data. |
PingException(String, Exception) |
Initializes a new instance of the PingException class using the specified message and inner exception. |
PingException(String)
- Source:
- PingException.cs
- Source:
- PingException.cs
- Source:
- PingException.cs
Initializes a new instance of the PingException class using the specified message.
public:
PingException(System::String ^ message);
public PingException (string? message);
public PingException (string message);
new System.Net.NetworkInformation.PingException : string -> System.Net.NetworkInformation.PingException
Public Sub New (message As String)
Parameters
Remarks
This constructor initializes the Message property with the text in the message
parameter. The InnerException property is set to null
.
Applies to
PingException(SerializationInfo, StreamingContext)
- Source:
- PingException.cs
- Source:
- PingException.cs
- Source:
- PingException.cs
Caution
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Initializes a new instance of the PingException class with serialized data.
protected:
PingException(System::Runtime::Serialization::SerializationInfo ^ serializationInfo, System::Runtime::Serialization::StreamingContext streamingContext);
protected PingException (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected PingException (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext);
new System.Net.NetworkInformation.PingException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Net.NetworkInformation.PingException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Net.NetworkInformation.PingException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Net.NetworkInformation.PingException
Protected Sub New (serializationInfo As SerializationInfo, streamingContext As StreamingContext)
Parameters
- serializationInfo
- SerializationInfo
The object that holds the serialized object data.
- streamingContext
- StreamingContext
A StreamingContext that specifies the contextual information about the source or destination for this serialization.
- Attributes
Remarks
This constructor is called during deserialization to reconstitute a previously serialized PingException object.
Applies to
PingException(String, Exception)
- Source:
- PingException.cs
- Source:
- PingException.cs
- Source:
- PingException.cs
Initializes a new instance of the PingException class using the specified message and inner exception.
public:
PingException(System::String ^ message, Exception ^ innerException);
public PingException (string? message, Exception? innerException);
public PingException (string message, Exception innerException);
new System.Net.NetworkInformation.PingException : string * Exception -> System.Net.NetworkInformation.PingException
Public Sub New (message As String, innerException As Exception)
Parameters
- innerException
- Exception
The exception that causes the current exception.
Remarks
This constructor initializes the Message property with the text in the message
parameter, and the InnerException property with the innerException
parameter.