using System;
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: 0x02000298 RID: 664
[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: 0x060020EA RID: 8426 RVA: 0x00078BDC File Offset: 0x00076DDC
public DefaultDependencyAttribute(LoadHint loadHintArgument)
{
this.hint = loadHintArgument;
}
/// Gets the value that indicates when an assembly loads a dependency.
/// One of the values.
// Token: 0x1700062E RID: 1582
// (get) Token: 0x060020EB RID: 8427 RVA: 0x00078BEC File Offset: 0x00076DEC
public LoadHint LoadHint
{
get
{
return this.hint;
}
}
// Token: 0x04000BC6 RID: 3014
private LoadHint hint;
}
}