ErrorReportComponent.cs 585 B

1234567891011121314151617181920212223242526
  1. using System.Collections.Generic;
  2. using System.Globalization;
  3. namespace ET
  4. {
  5. public class ErrorReportComponent : Entity, IAwake, IDestroy, IAppClose
  6. {
  7. public static ErrorReportComponent Instance;
  8. public ErrorInfo ErrorInfo;
  9. public string Url;
  10. //外网端口探测上报的url
  11. public string DetectionReportUrl;
  12. public bool IsDelayReport;
  13. public Queue<ErrorTextInfo> TextInfos = new Queue<ErrorTextInfo>();
  14. public long Timer;
  15. //延时发送错误信息
  16. public long DelayTime;
  17. }
  18. }