Click or drag to resize
InternalActorRefGetChild 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: 0.8.0.0 (0.8.0.0)
Syntax
public abstract ActorRef GetChild(
	IEnumerable<string> name
)

Parameters

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

Return Value

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