Skip to content

AssemblyOpenResult.ApphostWithCompanion

Namespace: Dotsider.Core.Analysis.Models

Assembly: Dotsider.Core.dll

The file is a native apphost with a companion managed .dll on disk. The caller decides when to redirect (e.g. showing a dialog first).

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

ObjectAssemblyOpenResultAssemblyOpenResult.ApphostWithCompanion

ApphostWithCompanion(AssemblyAnalyzer, string)

Section titled “ApphostWithCompanion(AssemblyAnalyzer, string)”

The file is a native apphost with a companion managed .dll on disk. The caller decides when to redirect (e.g. showing a dialog first).

Parameters:

  • HostAnalyzer (AssemblyAnalyzer): The analyzer for the native apphost (no metadata).
  • CompanionDllPath (String): Full path to the companion managed .dll.
public ApphostWithCompanion(AssemblyAnalyzer HostAnalyzer, string CompanionDllPath)

Full path to the companion managed .dll.

Returns: String

public string CompanionDllPath { get; init; }

The analyzer for the native apphost (no metadata).

Returns: AssemblyAnalyzer

public AssemblyAnalyzer HostAnalyzer { get; init; }