Skip to content

TypeScanAssemblyReportEntry Class

Definition

Contains the types selected from one assembly by a type scan expression.

C#
public sealed record TypeScanAssemblyReportEntry : IEquatable<TypeScanAssemblyReportEntry>

Inheritance object

Implements IEquatable<TypeScanAssemblyReportEntry>

Constructors

TypeScanAssemblyReportEntry(string, ImmutableList<TypeScanReportEntry>)

Contains the types selected from one assembly by a type scan expression.

C#
public TypeScanAssemblyReportEntry(string AssemblyName, ImmutableList<TypeScanReportEntry> Entries)

Parameters

AssemblyName string

Entries ImmutableList<TypeScanReportEntry>

Properties

AssemblyName

C#
public string AssemblyName { get; init; }

Entries

C#
public ImmutableList<TypeScanReportEntry> Entries { get; init; }