Akka.Tools.MatchHandler.TypeHandler.TypeHandler C# (CSharp) Method

TypeHandler() public method

public TypeHandler ( Type handlesType ) : System
handlesType System.Type
return System
        public TypeHandler(Type handlesType)
        {
            if(handlesType == null) throw new ArgumentNullException("handlesType");
            _handlesType = handlesType;
        }