示例#1
0
 public ExamItemStartMessage(string examItemCode, ExamItemStartMode mode, MapPoint point, IDictionary <string, object> properties = null)
 {
     this.ExamItemCode = examItemCode;
     this.Source       = mode;
     this.Properties   = properties;
     this.MapPoint     = point;
 }
 public ExamItemEndMessage(string examItemCode, ExamItemStartMode mode, object sender)
     : base(sender)
 {
     this.ExamItemCode = examItemCode;
     this.Source       = mode;
 }
 public ExamItemEndMessage(string examItemCode, ExamItemStartMode mode)
 {
     this.ExamItemCode = examItemCode;
     this.Source       = mode;
 }