ManagedMethodSource
Namespace: Dotsider.Core.Analysis.Models
Assembly: Dotsider.Core.dll
One managed assembly’s contribution to a managed↔native correlation build: its simple name (ILC embeds it in every mangled symbol) and its method definitions.
public sealed record ManagedMethodSource : IEquatable<ManagedMethodSource>Inheritance
Section titled “Inheritance”Object → ManagedMethodSource
Implements
Section titled “Implements”Constructors
Section titled “Constructors”ManagedMethodSource(string, IReadOnlyList<MethodDefInfo>)
Section titled “ManagedMethodSource(string, IReadOnlyList<MethodDefInfo>)”One managed assembly’s contribution to a managed↔native correlation build: its simple name (ILC embeds it in every mangled symbol) and its method definitions.
Parameters:
AssemblyName(String): The assembly simple name, exactly as mstat records attribute it.Methods(IReadOnlyList<MethodDefInfo>): The assembly’s method definitions.
public ManagedMethodSource(string AssemblyName, IReadOnlyList<MethodDefInfo> Methods)Properties
Section titled “Properties”AssemblyName
Section titled “AssemblyName”The assembly simple name, exactly as mstat records attribute it.
Returns: String
public string AssemblyName { get; init; }Methods
Section titled “Methods”The assembly’s method definitions.
Returns: IReadOnlyList<MethodDefInfo>
public IReadOnlyList<MethodDefInfo> Methods { get; init; }