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