MyWindowsService 录音批量下载服务源代码 vs2017 - 思念食品

Servlet.cs 477B

1234567891011121314151617181920212223
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Text;
  7. namespace WindowsServiceClient
  8. {
  9. class Servlet
  10. {
  11. public virtual void onGet(System.Net.HttpListenerRequest request, System.Net.HttpListenerResponse response) { }
  12. public virtual void onPost(System.Net.HttpListenerRequest request, System.Net.HttpListenerResponse response) { }
  13. public virtual void onCreate()
  14. {
  15. }
  16. }
  17. }