public ConfigureWorkBuilder <T> UseHandlePath(WorkHandlePath handlePath)
 {
     WorkHandlePath = handlePath;
     return(this);
 }
Beispiel #2
0
 public void SetHandlePath(WorkHandlePath path)
 => WorkHandlePath = path;
Beispiel #3
0
 public ConfigurationCase(Type configureWorkType, WorkHandlePath workHandlePath, int priority)
 {
     ConfigureWorkType = configureWorkType ?? throw new ArgumentNullException(nameof(configureWorkType));
     WorkHandlePath    = workHandlePath;
     Priority          = priority;
 }