Click or drag to resize
Akka.NETProps Constructor (Type, Object)
Initializes a new instance of the Props class.
Note Note
Props configured in this way uses the Deploy deployer.

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

Parameters

type
Type: SystemType
The type of the actor to create.
args
Type: SystemObject
The arguments needed to create the actor.
Exceptions
ExceptionCondition
ArgumentNullException This exception is thrown if Props is not instantiated with an actor type.
See Also