Exemplo n.º 1
0
 public ObsClientError(ObsClientErrorType errorType, string message)
 {
     ErrorType = errorType;
     Message   = message;
 }
Exemplo n.º 2
0
 protected override void InvokeErrorEvent(ObsClientErrorType errorType, string message) => base.InvokeErrorEvent(errorType, message);
Exemplo n.º 3
0
 public ObsClientError(ObsClientErrorType errorType) : this(errorType, string.Empty)
 {
 }
Exemplo n.º 4
0
 protected virtual void InvokeErrorEvent(ObsClientErrorType errorType, string message) => OnClientError?.Invoke(this, new ObsClientError(errorType, message));