Marshal.PrelinkAll(Type) Method

Definition

Performs a pre-link check for all methods on a class.

public:
 static void PrelinkAll(Type ^ c);
public static void PrelinkAll (Type c);
[System.Security.SecurityCritical]
public static void PrelinkAll (Type c);
static member PrelinkAll : Type -> unit
[<System.Security.SecurityCritical>]
static member PrelinkAll : Type -> unit
Public Shared Sub PrelinkAll (c As Type)

Parameters

c
Type

The class whose methods are to be checked.

Attributes

Exceptions

The c parameter is null.

Remarks

The PrelinkAll method invokes Marshal.Prelink on every method for a given type. Prelink executes one-time method setup tasks without calling each method. You can use PrelinkAll only for platform invoke calls.

Applies to

See also