private void Dispose(bool disposing) { if (disposing) { if (AccountManager != null) { if (IsDisposeSafe) { AccountManager.DisposeSafely(); } else { AccountManager.Dispose(); } AccountManager = null; } RpcWebClient.IsEnabled = false; if (Daemon != null) { Daemon.Dispose(); Daemon = null; } } }
private void Dispose(bool disposing) { if (disposing) { if (AccountManager != null) { AccountManager.Dispose(); AccountManager = null; } if (Daemon != null) { if (IsDisposeSafe) { Daemon.DisposeSafely(); } else { Daemon.Dispose(); } Daemon = null; } } }
public void Dispose() { _deamon.Dispose(); }
public void Dispose() { _daemon?.Dispose(); }