Skip to content

TypeScanReport Class

Definition

Contains the result of a type scan expression.

C#
public sealed record TypeScanReport : IEquatable<TypeScanReport>

Inheritance object

Implements IEquatable<TypeScanReport>

Constructors

TypeScanReport(string, string, ImmutableList<TypeScanAssemblyReportEntry>)

Contains the result of a type scan expression.

C#
public TypeScanReport(string SourceAssemblyName, string SourceExpression, ImmutableList<TypeScanAssemblyReportEntry> Entries)

Parameters

SourceAssemblyName string

SourceExpression string

Entries ImmutableList<TypeScanAssemblyReportEntry>

Properties

SourceAssemblyName

C#
public string SourceAssemblyName { get; init; }

SourceExpression

C#
public string SourceExpression { get; init; }

Entries

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