26 lines
676 B
C#
26 lines
676 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
/// <summary>Specifies the preferred default binding for a dependent assembly.</summary>
|
|
// Token: 0x0200056C RID: 1388
|
|
[Token(Token = "0x200056C")]
|
|
[Serializable]
|
|
public enum LoadHint
|
|
{
|
|
/// <summary>No preference specified.</summary>
|
|
// Token: 0x04001952 RID: 6482
|
|
[Token(Token = "0x4001952")]
|
|
Default,
|
|
/// <summary>The dependency is always loaded.</summary>
|
|
// Token: 0x04001953 RID: 6483
|
|
[Token(Token = "0x4001953")]
|
|
Always,
|
|
/// <summary>The dependency is sometimes loaded.</summary>
|
|
// Token: 0x04001954 RID: 6484
|
|
[Token(Token = "0x4001954")]
|
|
Sometimes
|
|
}
|
|
}
|