Example #1
0
 public void OnErrorTextReceived(IPackageManager sender, string text)
 {
     ErrorTextReceived?.Invoke(this, new OutputEventArgs(text));
 }
Example #2
0
 public void OnErrorTextReceived(string text)
 {
     ErrorTextReceived?.Invoke(this, new OutputEventArgs(text));
 }
Example #3
0
 void ICondaEnvironmentManagerUI.OnErrorTextReceived(ICondaEnvironmentManager mgr, string text)
 {
     ErrorTextReceived?.Invoke(this, new OutputEventArgs(text));
 }
Example #4
0
 protected virtual void OnErrorTextReceived(string e)
 {
     ErrorTextReceived?.Invoke(this, e);
 }