DefaultDependencyAttribute(LoadHint) Konstruktor

Definition

Initialisiert eine neue Instanz der DefaultDependencyAttribute Klasse mit der angegebenen LoadHint Bindung.

public:
 DefaultDependencyAttribute(System::Runtime::CompilerServices::LoadHint loadHintArgument);
public DefaultDependencyAttribute(System.Runtime.CompilerServices.LoadHint loadHintArgument);
new System.Runtime.CompilerServices.DefaultDependencyAttribute : System.Runtime.CompilerServices.LoadHint -> System.Runtime.CompilerServices.DefaultDependencyAttribute
Public Sub New (loadHintArgument As LoadHint)

Parameter

loadHintArgument
LoadHint

Einer der LoadHint Werte, der die Standardbindungseinstellung angibt.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie das DefaultDependencyAttribute Attribut auf eine Assembly angewendet wird, um anzugeben, dass die Abhängigkeit wahrscheinlich geladen wird.

using System;
using System.Runtime.CompilerServices;

[assembly: DefaultDependencyAttribute(LoadHint.Always)]
class Program
{

    static void Main(string[] args)
    {

        Console.WriteLine("The DefaultDependencyAttribute attribute was applied.");
    }
}
Imports System.Runtime.CompilerServices

<Assembly: DefaultDependencyAttribute(LoadHint.Always)> 
Module Program


    Sub Main(ByVal args() As String)
        Console.WriteLine("The DefaultDependencyAttribute attribute was applied.")
    End Sub


End Module

Gilt für: