MTSC  1.0.5
Build TCP servers out of modules with handlers for communication, exception and logging.
IHttpModule.cs
1 using MTSC.Client.Handlers;
2 using MTSC.Common.Http;
3 using System;
4 using System.Collections.Generic;
5 using System.Net.Sockets;
6 using System.Text;
7 
9 {
10  public interface IHttpModule
11  {
18  bool HandleResponse(IHandler handler, HttpMessage response);
19  }
20 }
bool HandleResponse(IHandler handler, HttpMessage response)
Handle a response received from the server.
Handler interface for client communication.
Definition: IHandler.cs:11
Definition: Client.cs:14