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
19 lines
369 B
C#
19 lines
369 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.SharedLauncher.Update
|
|
{
|
|
public class ApplyFileEventArgs : EventArgs
|
|
{
|
|
public string RelativePath { get; set; }
|
|
|
|
public ApplyFileEventArgs(string name)
|
|
{
|
|
RelativePath = name;
|
|
}
|
|
}
|
|
}
|