Skip to content

ResolvedAssembly.FromBundle

Namespace: Dotsider.Core.Analysis.Models

Assembly: Dotsider.Core.dll

The assembly was found inside a single-file bundle.

public sealed record ResolvedAssembly.FromBundle : ResolvedAssembly, IEquatable<ResolvedAssembly>, IEquatable<ResolvedAssembly.FromBundle>

ObjectResolvedAssemblyResolvedAssembly.FromBundle

The assembly was found inside a single-file bundle.

Parameters:

  • Bytes (Byte[]): The raw assembly bytes extracted from the bundle.
  • Name (String): The assembly file name (e.g. “System.Runtime.dll”).
  • BundlePath (String): Full path to the bundle file that contains this assembly.
public FromBundle(byte[] Bytes, string Name, string BundlePath)

Full path to the bundle file that contains this assembly.

Returns: String

public string BundlePath { get; init; }

The raw assembly bytes extracted from the bundle.

Returns: Byte[]

public byte[] Bytes { get; init; }

The assembly file name (e.g. “System.Runtime.dll”).

Returns: String

public string Name { get; init; }