Table of Contents

Class TypeImplementationInfo

Namespace
Yarhl.Plugins
Assembly
Yarhl.Plugins.dll

Provides information about a type that implements a base type.

public record TypeImplementationInfo : IEquatable<TypeImplementationInfo>
Inheritance
TypeImplementationInfo
Implements
Derived
Inherited Members

Constructors

TypeImplementationInfo(string, Type)

Provides information about a type that implements a base type.

public TypeImplementationInfo(string Name, Type Type)

Parameters

Name string

The name of the implementation type. Shortcut for Type.FullName.

Type Type

The implementation type.

Properties

Name

The name of the implementation type. Shortcut for Type.FullName.

public string Name { get; init; }

Property Value

string

Type

The implementation type.

public Type Type { get; init; }

Property Value

Type