public ParentActor() { var childActor = Context.ActorOf(Context.PropsFactory <ChildActor>().Create(), "Child1"); Receive <string>(msg => { childActor.Forward($"{msg}, Kid"); }); }