Advertisement
hejmus

Untitled

Nov 20th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.73 KB | None | 0 0
  1.         private readonly HttpListener _listener;
  2.         public event EventHandler<HttpListenerContext> NewRequest;
  3.         private readonly Thread _httpThread;
  4.         private const BindingFlags _bindFlags = BindingFlags.IgnoreCase | BindingFlags.Public |
  5.                                                 BindingFlags.InvokeMethod | BindingFlags.Instance;
  6.         private Type _controllerType;
  7.  
  8.         private static Dictionary<string, HttpSession> _httpSessions = new Dictionary
  9.             <string, HttpSession>();
  10.         private static readonly ILog _log = LogManager.GetLogger(typeof(HttpManager));
  11.  
  12.         private readonly string _name;
  13.         private readonly string _moduleDataPath;
  14.         private readonly IModule _module;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement