20 lines
613 B
C#
20 lines
613 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Specifies the action that a custom application domain manager takes when initializing a new domain.</summary>
|
|
// Token: 0x0200065E RID: 1630
|
|
[ComVisible(true)]
|
|
[Flags]
|
|
public enum AppDomainManagerInitializationOptions
|
|
{
|
|
/// <summary>No initialization action.</summary>
|
|
// Token: 0x040018CF RID: 6351
|
|
None = 0,
|
|
/// <summary>Register the COM callable wrapper for the current <see cref="T:System.AppDomainManager" /> with the unmanaged host. </summary>
|
|
// Token: 0x040018D0 RID: 6352
|
|
RegisterWithHost = 1
|
|
}
|
|
}
|