28 lines
1.4 KiB
C#
28 lines
1.4 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
/// <summary>Provides a hint to the common language runtime (CLR) indicating how likely a dependency is to be loaded. This class is used in a dependent assembly to indicate what hint should be used when the parent does not specify the <see cref="T:System.Runtime.CompilerServices.DependencyAttribute" /> attribute. This class cannot be inherited.</summary>
|
|
// Token: 0x0200054F RID: 1359
|
|
[Token(Token = "0x200054F")]
|
|
[AttributeUsage(AttributeTargets.Assembly)]
|
|
[Serializable]
|
|
public sealed class DefaultDependencyAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.DefaultDependencyAttribute" /> class with the specified <see cref="T:System.Runtime.CompilerServices.LoadHint" /> binding.</summary>
|
|
/// <param name="loadHintArgument">One of the <see cref="T:System.Runtime.CompilerServices.LoadHint" /> values that indicates the default binding preference.</param>
|
|
// Token: 0x06002A62 RID: 10850 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002A62")]
|
|
[Address(RVA = "0x4D83A0", Offset = "0x4D71A0", VA = "0x1804D83A0")]
|
|
public DefaultDependencyAttribute(LoadHint loadHintArgument)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04001892 RID: 6290
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4001892")]
|
|
private LoadHint loadHint;
|
|
}
|
|
}
|