public class AsynchronousFtpUpLoader
{
private string pathServer;
private string pathLocal;
public AsynchronousFtpUpLoader(string pathserver, string pathlocal)
{
this.pathServer = pathserver;
this.pathLocal = pathlocal;
}
//envoi le fichier un mode asynchrone
public static void execute()
{
ManualResetEvent waitObject;
Uri target = new Uri(pathServer);
. . .
j'ai une erreur ici une reference d'objet est requise pour pathServer
que faut-il faire ?
Partager