using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; namespace XHandler.Class { interface IHttpCommand { void Process(HttpListenerRequest request, ref HttpListenerResponse response); } }