Click or drag to resize
Akka.NETActorSystemImplSystemActorOf Method (Props, String)
Creates a new system actor that lives under the "/system" guardian.

Namespace:  Akka.Actor.Internal
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public override IActorRef SystemActorOf(
	Props props,
	string name = null
)

Parameters

props
Type: Akka.ActorProps
The Props used to create the actor.
name (Optional)
Type: SystemString
The name of the actor to create. The default value is .

Return Value

Type: IActorRef
A reference to the underlying actor.
Exceptions
ExceptionCondition
InvalidActorNameException This exception is thrown when the given name is invalid or already in use.
ConfigurationException This exception is thrown when deployment, dispatcher or mailbox configuration is incorrect.
See Also