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" }); }); } } }