CalendarAggregator.Scheduler.ExistsLockRecordForId C# (CSharp) Метод

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

public static ExistsLockRecordForId ( string id, TaskType type ) : bool
id string
type TaskType
Результат bool
        public static bool ExistsLockRecordForId(string id, TaskType type)
        {
            var q = string.Format(task_query_template, lock_pk, id);
            var tasktable = type.ToString();
            var dict_obj = TableStorage.QueryForSingleEntityAsDictObj(ts, tasktable, q);
            return dict_obj.Keys.Count != 0;
        }