using System; using Cpp2IlInjected; namespace System.Runtime.CompilerServices { /// 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 attribute. This class cannot be inherited. // Token: 0x0200054F RID: 1359 [Token(Token = "0x200054F")] [AttributeUsage(AttributeTargets.Assembly)] [Serializable] public sealed class DefaultDependencyAttribute : Attribute { /// Initializes a new instance of the class with the specified binding. /// One of the values that indicates the default binding preference. // 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; } }