Table of Contents

Class ConverterLocator

Namespace
Yarhl.Plugins.FileFormat
Assembly
Yarhl.Plugins.dll

Locates converter types across assemblies and provide their information.

public sealed class ConverterLocator
Inheritance
ConverterLocator
Inherited Members

Constructors

ConverterLocator(TypeLocator)

Initializes a new instance of the ConverterLocator class.

public ConverterLocator(TypeLocator locator)

Parameters

locator TypeLocator

The type locator to use internally.

Properties

Converters

Gets the list of Yarhl converters information from loaded assemblies.

public IReadOnlyList<ConverterTypeInfo> Converters { get; }

Property Value

IReadOnlyList<ConverterTypeInfo>

Default

Gets the singleton instance using the default TypeLocator.

public static ConverterLocator Default { get; }

Property Value

ConverterLocator

Remarks

It initializes the manager if needed.

Formats

Gets the list of Yarhl formats information from loaded assemblies.

public IReadOnlyList<TypeImplementationInfo> Formats { get; }

Property Value

IReadOnlyList<TypeImplementationInfo>

Methods

ScanAssemblies()

Scan the assemblies from the load context to look for formats and converters.

public void ScanAssemblies()

Remarks

This method is already called when the instance is created. Only needed after loading additional assemblies.