You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OMS.NET/Instructs/PingInstuct.cs

22 lines
469 B
C#

namespace OMS.NET.Instructs
{
public class PingInstuct : Instruct
{
public PingInstuct()
{
Type = "ping";
}
public override Task Handler(string wsid)
{
return Task.Run(() =>
{
ResponseOrBroadcastInstructs.Add(new Instruct()
{
IsResponse = true,
Type = "pong"
});
});
}
}
}