/// <summary>
 /// Returns whether the download has completed (either with success or
 /// error).
 /// </summary>
 /// <param name="status">
 /// The status.
 /// </param>
 /// <returns>
 /// The is status completed.
 /// </returns>
 public static bool IsCompleted(this ExpansionDownloadStatus status)
 {
     return(status.IsSuccess() || status.IsError());
 }