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,42 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
namespace System.Runtime.Remoting
{
/// <summary>The exception that is thrown when the server or the client cannot be reached for a previously specified period of time.</summary>
// Token: 0x0200044D RID: 1101
[ComVisible(true)]
[Serializable]
public class RemotingTimeoutException : RemotingException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingTimeoutException" /> class with default properties.</summary>
// Token: 0x06002A88 RID: 10888 RVA: 0x00089FAC File Offset: 0x000881AC
public RemotingTimeoutException()
{
}
/// <summary>Initializes a new instance of <see cref="T:System.Runtime.Remoting.RemotingTimeoutException" /> class with a specified message.</summary>
/// <param name="message">The message that indicates the reason why the exception occurred. </param>
// Token: 0x06002A89 RID: 10889 RVA: 0x00089FB4 File Offset: 0x000881B4
public RemotingTimeoutException(string message)
: base(message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingTimeoutException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="message">The error message that explains the reason for the exception. </param>
/// <param name="InnerException">The exception that is the cause of the current exception. If the <paramref name="InnerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param>
// Token: 0x06002A8A RID: 10890 RVA: 0x00089FC0 File Offset: 0x000881C0
public RemotingTimeoutException(string message, Exception InnerException)
: base(message, InnerException)
{
}
// Token: 0x06002A8B RID: 10891 RVA: 0x00089FCC File Offset: 0x000881CC
internal RemotingTimeoutException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}