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