Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020004CB RID: 1227
[Token(Token = "0x20004CB")]
[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: 0x0600295C RID: 10588 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600295C")]
[Address(RVA = "0x8A3370", Offset = "0x8A2370", VA = "0x1808A3370")]
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: 0x0600295D RID: 10589 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600295D")]
[Address(RVA = "0xD1FC10", Offset = "0xD1EC10", VA = "0x180D1FC10")]
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: 0x0600295E RID: 10590 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600295E")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
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: 0x0600295F RID: 10591 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600295F")]
[Address(RVA = "0x767A00", Offset = "0x766A00", VA = "0x180767A00")]
public RemotingException(string message, Exception InnerException)
{
}
}
}