2018-12-17 15:13:05 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace go01
|
|
|
|
|
{
|
|
|
|
|
public class socketPlateauServJoinArgs : EventArgs
|
|
|
|
|
{
|
|
|
|
|
public socketPlateauBase.ConfigGo_S ConfigGo;
|
|
|
|
|
public socketPlateauServJoinArgs(socketPlateauBase.ConfigGo_S cfg)
|
|
|
|
|
{
|
|
|
|
|
this.ConfigGo = cfg;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class socketPlateauServACKArgs : EventArgs
|
|
|
|
|
{
|
|
|
|
|
public bool ack;
|
|
|
|
|
public socketPlateauServACKArgs(bool ack)
|
|
|
|
|
{
|
|
|
|
|
this.ack = ack;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class socketPlateauServDemandeCo : EventArgs
|
|
|
|
|
{
|
|
|
|
|
public socketPlateauServDemandeCo()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public class socketPlateauServReception : EventArgs
|
|
|
|
|
{
|
|
|
|
|
public socketPlateauBase.CommandeSocket_S cmd;
|
|
|
|
|
public socketPlateauServReception(socketPlateauBase.CommandeSocket_S cmd)
|
|
|
|
|
{
|
|
|
|
|
this.cmd = cmd;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-03 11:20:16 +01:00
|
|
|
|
public class socketPlateauConnected : EventArgs
|
|
|
|
|
{
|
|
|
|
|
public socketPlateauBase.ConfigGo_S ConfigGo;
|
|
|
|
|
|
|
|
|
|
public socketPlateauConnected(socketPlateauBase.ConfigGo_S cfg)
|
|
|
|
|
{
|
|
|
|
|
this.ConfigGo = cfg;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-17 15:13:05 +01:00
|
|
|
|
}
|