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,21 @@
using System;
using System.Runtime.InteropServices;
namespace System.Runtime.Remoting
{
/// <summary>Specifies how custom errors are handled.</summary>
// Token: 0x0200043A RID: 1082
[ComVisible(true)]
public enum CustomErrorsModes
{
/// <summary>All callers receive filtered exception information.</summary>
// Token: 0x04001007 RID: 4103
On,
/// <summary>All callers receive complete exception information.</summary>
// Token: 0x04001008 RID: 4104
Off,
/// <summary>Local callers receive complete exception information; remote callers receive filtered exception information.</summary>
// Token: 0x04001009 RID: 4105
RemoteOnly
}
}