Table of Contents

Class ConverterTypeInfo

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

Provides information from a type that implements a converter.

public record ConverterTypeInfo : GenericTypeImplementationInfo, IEquatable<TypeImplementationInfo>, IEquatable<GenericTypeImplementationInfo>, IEquatable<ConverterTypeInfo>
Inheritance
ConverterTypeInfo
Implements
Inherited Members

Constructors

ConverterTypeInfo(string, Type, Type, IReadOnlyList<Type>)

Provides information from a type that implements a converter.

public ConverterTypeInfo(string Name, Type Type, Type InterfaceImplemented, IReadOnlyList<Type> GenericTypes)

Parameters

Name string
Type Type
InterfaceImplemented Type
GenericTypes IReadOnlyList<Type>

ConverterTypeInfo(GenericTypeImplementationInfo)

Initializes a new instance of the ConverterTypeInfo class.

public ConverterTypeInfo(GenericTypeImplementationInfo info)

Parameters

info GenericTypeImplementationInfo

The generic implementor information.

Properties

DestinationType

Gets the destination type the converter can convert to.

public Type DestinationType { get; }

Property Value

Type

GenericTypes

public IReadOnlyList<Type> GenericTypes { get; init; }

Property Value

IReadOnlyList<Type>

InterfaceImplemented

public Type InterfaceImplemented { get; init; }

Property Value

Type

SourceType

Gets the source type the converter can convert from.

public Type SourceType { get; }

Property Value

Type

Methods

CanConvert(Type)

Check if this converter type can convert from the given source type. It checks applying covariance rules.

public bool CanConvert(Type source)

Parameters

source Type

Source type for conversion.

Returns

bool

If this converter can realize the operation.

CanConvert(Type, Type)

Check if this converter type can convert from the given source type into the given desination type. It checks applying covariance and contravariance rules.

public bool CanConvert(Type source, Type dest)

Parameters

source Type

Source type for conversion.

dest Type

Destination type for conversion.

Returns

bool

If this converter can realize the operation.