public SDownloadEventResult(DownloadEventType eventType, SDownloadFileResult fileResult, SDownloadModuleConfig info, string error) { Error = error; Info = info; FileResult = fileResult; EventType = eventType; }
public SDownloadEventResult(DownloadEventType eventType, SDownloadFileResult fileResult, SGameUpdaterDownloadConfig info, string error) { this.error = error; this.info = info; this.fileResult = fileResult; this.eventType = eventType; }
public SDownloadEventResult(DownloadEventType eventType, SDownloadModuleConfig info) : this(eventType, new SDownloadFileResult(), info, string.Empty) { }
public SDownloadEventResult(DownloadEventType eventType, string error) : this(eventType, new SDownloadFileResult(), new SDownloadModuleConfig(), error) { }
public SDownloadEventResult(DownloadEventType eventType, SDownloadFileResult fileResult) : this(eventType, fileResult, new SDownloadModuleConfig(), string.Empty) { }
public SDownloadEventResult(DownloadEventType eventType, SGameUpdaterDownloadConfig info) : this(eventType, new SDownloadFileResult(), info, string.Empty) { }
public SDownloadEventResult(DownloadEventType eventType, string error) : this(eventType, new SDownloadFileResult(), new SGameUpdaterDownloadConfig(), error) { }
public SDownloadEventResult(DownloadEventType eventType, SDownloadFileResult fileResult) : this(eventType, fileResult, new SGameUpdaterDownloadConfig(), string.Empty) { }
public SWebDownloadEvent(DownloadEventType type, params object[] objs) { EventType = type; this.objs = objs; }
public DownloadEvent(DownloadEventType eventType, DownloadConfig config, object param = null) { this.eventType = eventType; this.config = config; this.param = param; }