  | ActorSystemImplDeadLetters Property  | 
 
                An actor system is a hierarchical group of actors which share common
                configuration, e.g. dispatchers, deployments, remote capabilities and
                addresses. It is also the entry point for creating or looking up actors.
                There are several possibilities for creating actors (see 
Props
                for details on `props`):
                
system.ActorOf(props, "name");
system.ActorOf(props);
system.ActorOf(Props.Create(typeof(MyActor)), "name");
system.ActorOf(Props.Create(() => new MyActor(arg1, arg2), "name");
                Where no name is given explicitly, one will be automatically generated.
                
Important Notice:
                This class is not meant to be extended by user code.
            
 
    Namespace: 
   Akka.Actor.Internal
    Assembly:
   Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntaxpublic override IActorRef DeadLetters { get; }abstract DeadLetters : IActorRef with get
override DeadLetters : IActorRef with get
Property Value
Type: 
IActorRef
See Also