Provides a registry of discovered Commands and Factories, as well as methods for discovering them.
예제 #1
0
파일: Context.cs 프로젝트: newbish/hfmcmd
 // Constructor
 public Context(Registry registry, Func<CommandParameter, object> missingArgHandler)
 {
     _registry = registry;
     MissingArgHandler = missingArgHandler;
 }
예제 #2
0
파일: Context.cs 프로젝트: newbish/hfmcmd
 // Constructor
 public Context(Registry registry)
     : this(registry, null)
 {
 }