Click or drag to resize
Akka.NETIInternalActorRefGetChild Method
Obtain a child given the paths element to that actor, by possibly traversing the actor tree or looking it up at some provider-specific location. A path element of ".." signifies the parent, a trailing "" element must be disregarded. If the requested path does not exist, returns Nobody.

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
IActorRef GetChild(
	IEnumerable<string> name
)

Parameters

name
Type: System.Collections.GenericIEnumerableString
The path elements.

Return Value

Type: IActorRef
The IActorRef, or if the requested path does not exist, returns Nobody.
See Also