This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,37 @@
using System;
using System.Runtime.Serialization;
namespace System.Net.NetworkInformation
{
/// <summary>The exception that is thrown when a <see cref="Overload:System.Net.NetworkInformation.Ping.Send" /> or <see cref="Overload:System.Net.NetworkInformation.Ping.SendAsync" /> method calls a method that throws an exception.</summary>
// Token: 0x020001B0 RID: 432
[Serializable]
public class PingException : InvalidOperationException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkInformation.PingException" /> class using the specified message.</summary>
/// <param name="message">A <see cref="T:System.String" /> that describes the error.</param>
// Token: 0x06000E58 RID: 3672 RVA: 0x00028E58 File Offset: 0x00027058
public PingException(string message)
: base(message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkInformation.PingException" /> class using the specified message and inner exception.</summary>
/// <param name="message">A <see cref="T:System.String" /> that describes the error.</param>
/// <param name="innerException">The exception that causes the current exception.</param>
// Token: 0x06000E59 RID: 3673 RVA: 0x00028E64 File Offset: 0x00027064
public PingException(string message, Exception innerException)
: base(message, innerException)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkInformation.PingException" /> class with serialized data. </summary>
/// <param name="serializationInfo">The object that holds the serialized object data. </param>
/// <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the contextual information about the source or destination for this serialization.</param>
// Token: 0x06000E5A RID: 3674 RVA: 0x00028E70 File Offset: 0x00027070
protected PingException(SerializationInfo serializationInfo, StreamingContext streamingContext)
: base(serializationInfo, streamingContext)
{
}
}
}