2 instantiations of ClockHandResource
CustomResources.AppHost (2)
TalkingClockResource.cs (2)
28
var tickHandResource = new
ClockHandResource
(name + "-tick-hand");
29
var tockHandResource = new
ClockHandResource
(name + "-tock-hand");
7 references to ClockHandResource
CustomResources.AppHost (7)
TalkingClockResource.cs (7)
10
public sealed class TalkingClockResource(string name,
ClockHandResource
tickHand,
ClockHandResource
tockHand) : Resource(name)
12
public
ClockHandResource
TickHand { get; } = tickHand; // The tick hand resource instance.
13
public
ClockHandResource
TockHand { get; } = tockHand; // The tock hand resource instance.
28
var
tickHandResource = new ClockHandResource(name + "-tick-hand");
29
var
tockHandResource = new ClockHandResource(name + "-tock-hand");
126
void AddHandResource(
ClockHandResource
clockHand)