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
stringType
TypeInterfaceImplemented
TypeGenericTypes
IReadOnlyList<Type>
ConverterTypeInfo(GenericTypeImplementationInfo)
Initializes a new instance of the ConverterTypeInfo class.
public ConverterTypeInfo(GenericTypeImplementationInfo info)
Parameters
info
GenericTypeImplementationInfoThe generic implementor information.
Properties
DestinationType
Gets the destination type the converter can convert to.
public Type DestinationType { get; }
Property Value
GenericTypes
public IReadOnlyList<Type> GenericTypes { get; init; }
Property Value
InterfaceImplemented
public Type InterfaceImplemented { get; init; }
Property Value
SourceType
Gets the source type the converter can convert from.
public Type SourceType { get; }
Property Value
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
TypeSource 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
Returns
- bool
If this converter can realize the operation.