AssemblyDependencyResolver Class

Definition

Allows a program to resolve assemblies and native libraries to paths based on the dependencies of a given assembly.

public ref class AssemblyDependencyResolver sealed
public sealed class AssemblyDependencyResolver
[System.Runtime.Versioning.UnsupportedOSPlatform("android")]
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public sealed class AssemblyDependencyResolver
type AssemblyDependencyResolver = class
[<System.Runtime.Versioning.UnsupportedOSPlatform("android")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
type AssemblyDependencyResolver = class
Public NotInheritable Class AssemblyDependencyResolver
Inheritance
AssemblyDependencyResolver
Attributes

Remarks

The AssemblyDependencyResolver class enables application developers to more easily develop a plugin architecture in conjunction with custom System.Runtime.Loader.AssemblyLoadContext instances to isolate plugins and also enable plugins to load dependencies.

The tutorial on creating a .NET Core application with plugins describes how to create a custom AssemblyLoadContext that uses an AssemblyDependencyResolver to resolve the dependencies of the plugin and correctly isolate the plugin's dependencies from the hosting application.

Constructors

AssemblyDependencyResolver(String)

Initializes a new instance of the AssemblyDependencyResolver class with a path to a component's assembly.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ResolveAssemblyToPath(AssemblyName)

Resolves a path to an assembly with the given assembly name based on the component's dependencies.

ResolveUnmanagedDllToPath(String)

Resolves a path to a native library with the given name based on the component's dependencies.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to