void EditEventStatusValue(RFIDEventType type, bool bValue) { MRE_DicEdit.WaitOne(); MRE_DicEdit.Reset(); dicCommandSuccess[(int)type] = bValue; MRE_DicEdit.Set(); }
bool GetEventStatusValue(RFIDEventType type) { MRE_DicEdit.WaitOne(); return(dicCommandSuccess[(int)type]); }