| 1234567891011121314151617181920212223242526 |
- using System.Collections.Generic;
- using System.Globalization;
- namespace ET
- {
- public class ErrorReportComponent : Entity, IAwake, IDestroy, IAppClose
- {
- public static ErrorReportComponent Instance;
- public ErrorInfo ErrorInfo;
- public string Url;
-
- //外网端口探测上报的url
- public string DetectionReportUrl;
- public bool IsDelayReport;
- public Queue<ErrorTextInfo> TextInfos = new Queue<ErrorTextInfo>();
- public long Timer;
- //延时发送错误信息
- public long DelayTime;
- }
- }
|