Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

24 lignes
718 B

  1. // ********************************************************************************
  2. // 文件名字: ErrorHandler
  3. // 文件描述: ErrorHandler
  4. // 开发人员: Michael
  5. // 创建时间: 2019/11/8 0:08
  6. //
  7. // 更新历史:
  8. // + 创建 ErrorHandler.cs 文件. by Michael @2019/11/8 0:08
  9. // ********************************************************************************
  10. using Glorysoft.SECS.EQP.Common;
  11. using Glorysoft.SECS.EQP.Utilities;
  12. using Glorysoft.SECSwell;
  13. using System;
  14. namespace Glorysoft.SECS.EQP.Handlers
  15. {
  16. public class ErrorHandler : ISECSMessageHandler
  17. {
  18. public void Execute(SECSContext context, SECSTransaction trans, SECSErrors err, string errmsg)
  19. {
  20. }
  21. }
  22. }