scripts
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user