22 lines
661 B
C#
22 lines
661 B
C#
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
|
|
}
|
|
}
|