Changed IsKeepAlive to IsAlive in WebSocket.cs

This commit is contained in:
sta
2012-09-05 17:11:27 +09:00
parent 85ef38084d
commit 022368dabb
19 changed files with 13 additions and 24 deletions

View File

@@ -84,11 +84,11 @@ namespace WebSocketSharp.Server {
}
public WebSocketServer(int port)
: this("/", port)
: this(port, "/")
{
}
public WebSocketServer(string absPath, int port)
public WebSocketServer(int port, string absPath)
{
_uri = new Uri(absPath, UriKind.Relative);