/// <summary> /// Delays the execution in the specified Miliseconds. /// This Method can be used to convert a Synchronous Method into an Asynchronous Method. /// </summary> /// <param name="miliseconds">Miliseconds to Delay the execution.</param> /// <returns>Task.</returns> public virtual async Task DelayTask(int miliseconds = 1) { await ManagerUtil.DelayTask(miliseconds); }