Added some XML documentation comments and renamed some method names

This commit is contained in:
sta
2013-02-11 22:57:01 +09:00
parent afe74fe857
commit 9b1772e80a
89 changed files with 1957 additions and 624 deletions

Binary file not shown.

View File

@@ -12,13 +12,13 @@ namespace Example3
public static void Main(string[] args)
{
_httpsv = new HttpServer(4649);
//_httpsv.Sweeped = false; // Stop the Sweep inactive session Timer.
_httpsv.AddService<Echo>("/Echo");
_httpsv.AddService<Chat>("/Chat");
//_httpsv.Sweeped = false;
_httpsv.AddWebSocketService<Echo>("/Echo");
_httpsv.AddWebSocketService<Chat>("/Chat");
_httpsv.OnGet += (sender, e) =>
_httpsv.OnResponseToGet += (sender, e) =>
{
onGet(e.Request, e.Response);
onResponseToGet(e);
};
_httpsv.OnError += (sender, e) =>
@@ -46,9 +46,11 @@ namespace Example3
return _httpsv.GetFile(path);
}
private static void onGet(HttpListenerRequest request, HttpListenerResponse response)
private static void onResponseToGet(ResponseEventArgs eventArgs)
{
var content = getContent(request.RawUrl);
var request = eventArgs.Request;
var response = eventArgs.Response;
var content = getContent(request.RawUrl);
if (content != null)
{
response.WriteContent(content);

Binary file not shown.

Binary file not shown.

Binary file not shown.