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; }

Deconstruct(out string, out string, out int)

Section titled “Deconstruct(out string, out string, out int)”

Parameters:

public void Deconstruct(out string AssemblyName, out string Name, out int Size)

Parameters:

Returns: Boolean

public bool Equals(MstatManifestResource? other)

Parameters:

Returns: Boolean

public override bool Equals(object? obj)

Returns: Int32

public override int GetHashCode()

Returns: String

public override string ToString()

operator !=(MstatManifestResource?, MstatManifestResource?)

Section titled “operator !=(MstatManifestResource?, MstatManifestResource?)”

Parameters:

Returns: Boolean

public static bool operator !=(MstatManifestResource? left, MstatManifestResource? right)

operator ==(MstatManifestResource?, MstatManifestResource?)

Section titled “operator ==(MstatManifestResource?, MstatManifestResource?)”

Parameters:

Returns: Boolean

public static bool operator ==(MstatManifestResource? left, MstatManifestResource? right)