Skip to content

MstatManifestResource

Namespace: Dotsider.Core.Analysis.Models

Assembly: Dotsider.Core.dll

One embedded manifest resource from an ILC size report (format 2.1+). For back-compat these bytes are also summed into the ResourceData blob entry.

public sealed record MstatManifestResource : IEquatable<MstatManifestResource>

ObjectMstatManifestResource

MstatManifestResource(string, string, int)

Section titled “MstatManifestResource(string, string, int)”

One embedded manifest resource from an ILC size report (format 2.1+). For back-compat these bytes are also summed into the ResourceData blob entry.

Parameters:

  • AssemblyName (String): The simple name of the assembly the resource was embedded in.
  • Name (String): The resource name.
  • Size (Int32): The resource size in bytes.
public MstatManifestResource(string AssemblyName, string Name, int Size)

The simple name of the assembly the resource was embedded in.

Returns: String

public string AssemblyName { get; init; }

The resource name.

Returns: String

public string Name { get; init; }

The resource size in bytes.

Returns: Int32

public int Size { get; init; }