fix WebSocket.cs

This commit is contained in:
sta
2010-10-23 16:31:38 +09:00
parent cdfb5f0d0f
commit 3f5215844f
22 changed files with 4 additions and 9 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
<MonoDevelop.Ide.Workspace ActiveConfiguration="Release_Ubuntu" ctype="Workspace" />
<MonoDevelop.Ide.Workbench ActiveDocument="websocket-sharp/WebSocket.cs" ctype="Workbench">
<Files>
<File FileName="websocket-sharp/WebSocket.cs" Line="204" Column="1" />
<File FileName="websocket-sharp/WebSocket.cs" Line="1" Column="1" />
</Files>
</MonoDevelop.Ide.Workbench>
<MonoDevelop.Ide.DebuggingService.Breakpoints>
+3 -8
View File
@@ -48,19 +48,13 @@ namespace WebSocketSharp
private Uri uri;
public string Url
{
get
{
return uri.ToString();
}
get { return uri.ToString(); }
}
private volatile WsState readyState;
public WsState ReadyState
{
get
{
return readyState;
}
get { return readyState; }
private set
{
@@ -315,6 +309,7 @@ namespace WebSocketSharp
{
int j = response[i].IndexOf(":");
protocol = response[i].Substring(j + 1).Trim();
break;
}
}
#if DEBUG
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.