using System;
using System.Runtime.InteropServices;
namespace System
{
/// Specifies the action that a custom application domain manager takes when initializing a new domain.
// Token: 0x0200065E RID: 1630
[ComVisible(true)]
[Flags]
public enum AppDomainManagerInitializationOptions
{
/// No initialization action.
// Token: 0x040018CF RID: 6351
None = 0,
/// Register the COM callable wrapper for the current with the unmanaged host.
// Token: 0x040018D0 RID: 6352
RegisterWithHost = 1
}
}