Beispiel #1
0
 public ProgressService()
 {
     this._isLoading    = false;
     this._loadingItems = 0;
     this._output       = new ObservableRingBufferCollection <PowerShellOutputLine>(100);
     this._lock         = new AsyncLock();
 }
Beispiel #2
0
 public ProgressService()
 {
     IsLoading     = false;
     _loadingItems = 0;
     Output        = new ObservableRingBufferCollection <PowerShellOutputLine>(100);
     _lock         = new AsyncSemaphore(1);
 }
 public ProgressService()
 {
     this._isLoading = false;
     this._loadingItems = 0;
     this._output = new ObservableRingBufferCollection<PowerShellOutputLine>(100);
     this._lock = new AsyncLock();
 }