Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

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: 0x0200056D RID: 1389
[Token(Token = "0x200056D")]
[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: 0x06002C71 RID: 11377 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002C71")]
[Address(RVA = "0x41F8E0", Offset = "0x41E8E0", VA = "0x18041F8E0")]
public DefaultDependencyAttribute(LoadHint loadHintArgument)
{
}
// Token: 0x04001955 RID: 6485
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4001955")]
private LoadHint loadHint;
}
}