SyncthingCore.WorkerDirective.WorkerDirective C# (CSharp) Method

WorkerDirective() public method

public WorkerDirective ( bool isEnabled, System.TimeSpan waitTime, System.TimeSpan timeout, bool inDebugMode = false ) : System
isEnabled bool
waitTime System.TimeSpan
timeout System.TimeSpan
inDebugMode bool
return System
        public WorkerDirective(bool isEnabled, TimeSpan waitTime, TimeSpan timeout, bool inDebugMode = false)
        {
            IsEnabled = isEnabled;
            WaitTime = waitTime;
            Timeout = timeout;
            InDebugMode = inDebugMode;
        }
WorkerDirective