21 lines
530 B
C#
21 lines
530 B
C#
using System;
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
/// <summary>Specifies the preferred default binding for a dependent assembly.</summary>
|
|
// Token: 0x020002AB RID: 683
|
|
[Serializable]
|
|
public enum LoadHint
|
|
{
|
|
/// <summary>No preference specified.</summary>
|
|
// Token: 0x04000BCA RID: 3018
|
|
Default,
|
|
/// <summary>The dependency is always loaded.</summary>
|
|
// Token: 0x04000BCB RID: 3019
|
|
Always,
|
|
/// <summary>The dependency is sometimes loaded.</summary>
|
|
// Token: 0x04000BCC RID: 3020
|
|
Sometimes
|
|
}
|
|
}
|