Class SamplingProfileNode
Heap profile sample.
public sealed record SamplingProfileNode : IEquatable<SamplingProfileNode>
- Inheritance
-
SamplingProfileNode
- Implements
- Inherited Members
Constructors
SamplingProfileNode(double, double, ImmutableArray<string>)
Heap profile sample.
public SamplingProfileNode(double Size, double Total, ImmutableArray<string> Stack)
Parameters
SizedoubleSize of the sampled allocation.
TotaldoubleTotal bytes attributed to this sample.
StackImmutableArray<string>Execution stack at the point of allocation.
Properties
Size
Size of the sampled allocation.
public double Size { get; init; }
Property Value
Stack
Execution stack at the point of allocation.
public ImmutableArray<string> Stack { get; init; }
Property Value
Total
Total bytes attributed to this sample.
public double Total { get; init; }