Advertisement
Guest User

IServerPlugin

a guest
Jul 24th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Net;
  7.  
  8. namespace PluginFramework
  9. {
  10. public interface IServerPlugin
  11. {
  12. string GetVersion();
  13. string GetName();
  14. void OnLoad();
  15. void OnRequest(HttpListenerContext context);
  16. void OnFileRead(string filePath);
  17. void OnError(Exception ex);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement