Class FrameResourceTree
Information about the Frame hierarchy along with their cached resources.
public sealed record FrameResourceTree : IEquatable<FrameResourceTree>
- Inheritance
-
FrameResourceTree
- Implements
- Inherited Members
Constructors
FrameResourceTree(Frame, ImmutableArray<FrameResource>)
Information about the Frame hierarchy along with their cached resources.
public FrameResourceTree(Frame Frame, ImmutableArray<FrameResource> Resources)
Parameters
FrameFrameFrame information for this tree item.
ResourcesImmutableArray<FrameResource>Information about frame resources.
Properties
ChildFrames
Child frames.
public ImmutableArray<FrameResourceTree>? ChildFrames { get; init; }
Property Value
Frame
Frame information for this tree item.
public Frame Frame { get; init; }
Property Value
Resources
Information about frame resources.
public ImmutableArray<FrameResource> Resources { get; init; }