Skip to content

AssemblyScanReport Class

Definition

Contains the result of an assembly scan expression.

C#
public sealed record AssemblyScanReport : IEquatable<AssemblyScanReport>

Inheritance object

Implements IEquatable<AssemblyScanReport>

Constructors

AssemblyScanReport(string, string, ImmutableList<AssemblyScanReportEntry>)

Contains the result of an assembly scan expression.

C#
public AssemblyScanReport(string SourceAssemblyName, string SourceExpression, ImmutableList<AssemblyScanReportEntry> Entries)

Parameters

SourceAssemblyName string

SourceExpression string

Entries ImmutableList<AssemblyScanReportEntry>

Properties

SourceAssemblyName

C#
public string SourceAssemblyName { get; init; }

SourceExpression

C#
public string SourceExpression { get; init; }

Entries

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