Skip to content

AssemblyOpenResult.BundleEntry

Namespace: Dotsider.Core.Analysis.Models

Assembly: Dotsider.Core.dll

The file is a single-file bundle. The entry assembly has been extracted from the bundle and is ready for analysis.

public sealed record AssemblyOpenResult.BundleEntry : AssemblyOpenResult, IEquatable<AssemblyOpenResult>, IEquatable<AssemblyOpenResult.BundleEntry>

ObjectAssemblyOpenResultAssemblyOpenResult.BundleEntry

The file is a single-file bundle. The entry assembly has been extracted from the bundle and is ready for analysis.

Parameters:

  • EntryAnalyzer (AssemblyAnalyzer): The analyzer for the extracted entry assembly.
  • BundlePath (String): Full path to the bundle file.
public BundleEntry(AssemblyAnalyzer EntryAnalyzer, string BundlePath)

Full path to the bundle file.

Returns: String

public string BundlePath { get; init; }

The analyzer for the extracted entry assembly.

Returns: AssemblyAnalyzer

public AssemblyAnalyzer EntryAnalyzer { get; init; }