ExistsTaskRecordForId() публичный статический Метод

public static ExistsTaskRecordForId ( string id, TaskType type ) : bool
id string
type TaskType
Результат bool
Пример #1
0
 public static void EnsureTaskRecord(string id, TaskType type)
 {
     if (Scheduler.ExistsTaskRecordForId(id, type) == false)
     {
         GenUtils.LogMsg("status", "MaybeCreateTaskRecord: creating task for " + id, null);
         Scheduler.InitTaskForId(id, type);
     }
 }