Click or drag to resize
Akka.NETPropsCreate Method (Type, Object)
Creates an actor of a specified type.

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static Props Create(
	Type type,
	params Object[] args
)

Parameters

type
Type: SystemType
The type of the actor to create.
args
Type: SystemObject
The arguments needed to create the actor.

Return Value

Type: Props
The newly created Props.
Exceptions
ExceptionCondition
ArgumentNullExceptionProps must be instantiated with an actor type.
See Also