Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

54 lines
2.8 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Runtime.Remoting
{
/// <summary>The exception that is thrown when something has gone wrong during remoting.</summary>
// Token: 0x020004AF RID: 1199
[Token(Token = "0x20004AF")]
[ComVisible(true)]
[Serializable]
public class RemotingException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingException" /> class with default properties.</summary>
// Token: 0x0600274F RID: 10063 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600274F")]
[Address(RVA = "0x2228EB0", Offset = "0x2227CB0", VA = "0x182228EB0")]
public RemotingException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingException" /> class with a specified message.</summary>
/// <param name="message">The error message that explains why the exception occurred.</param>
// Token: 0x06002750 RID: 10064 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002750")]
[Address(RVA = "0x25C2B70", Offset = "0x25C1970", VA = "0x1825C2B70")]
public RemotingException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingException" /> class from serialized data.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">The contextual information about the source or destination of the exception.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is <see langword="null" />.</exception>
// Token: 0x06002751 RID: 10065 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002751")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected RemotingException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.RemotingException" /> 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 why the exception occurred.</param>
/// <param name="InnerException">The exception that is the cause of the current exception. If the <paramref name="InnerException" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
// Token: 0x06002752 RID: 10066 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002752")]
[Address(RVA = "0x3F60D0", Offset = "0x3F4ED0", VA = "0x1803F60D0")]
public RemotingException(string message, Exception InnerException)
{
}
}
}