Informationen ausgelagert Kleines Spy/Test Programm erstellt Mehr Exceptions/InvalidUpdateFileRequestException.cs Launcher Host in Download Server geändert Download Server macht zusätzlich Abfrage an den Hauptserver Download geht jetzt stückweise von statten
29 lines
809 B
C#
29 lines
809 B
C#
using System;
|
|
using System.IO;
|
|
using System.ServiceModel;
|
|
|
|
using BS.Shared.DataContracts;
|
|
using BS.SharedLauncher.DataContract;
|
|
|
|
namespace BeWo.Service.ServiceContracts
|
|
{
|
|
[ServiceContract]
|
|
public interface IDownloadBeWoService
|
|
{
|
|
[FaultContract(typeof(BeWoFault))]
|
|
[OperationContract]
|
|
UpdateFileResponse Download2(UpdatePlanRequest request);
|
|
|
|
[FaultContract(typeof(BeWoFault))]
|
|
[OperationContract]
|
|
UpdatePlanResponse DownloadInfo(UpdatePlanRequest request);
|
|
|
|
[FaultContract(typeof(BeWoFault))]
|
|
[OperationContract]
|
|
UpdatePlanResponse GetUpdatePlan(UpdatePlanRequest request);
|
|
|
|
[FaultContract(typeof(BeWoFault))]
|
|
[OperationContract]
|
|
UpdateFileResponse GetUpdateFile(UpdateFileRequest request);
|
|
}
|
|
} |