Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

System.InvalidOperationException: A task may only be disposed if it is in a completion stat #1

Closed
carlosalbertosousa opened this issue Sep 7, 2016 · 1 comment

Comments

@carlosalbertosousa
Copy link

error in the method OnDestroy in _task._task.Dispose();

Unhandled Exception:

System.InvalidOperationException: A task may only be disposed if it is in a completion state (RanToCompletion, Faulted or Canceled).

public override void OnDestroy()
{
_isRunning = false;

      if (_task != null)
      {
          _task.Dispose();
      }
  }
@hassanbht
Copy link

hassanbht commented Sep 22, 2018

add

if (_task != null && _task.Status == TaskStatus.RanToCompletion)
{
    _task.Dispose();
}

@wcoder wcoder closed this as completed in e4b39be Sep 22, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants