Changed IsKeepAlive to IsAlive in WebSocket.cs
This commit is contained in:
parent
85ef38084d
commit
022368dabb
Binary file not shown.
@ -116,7 +116,7 @@ namespace Example
|
||||
Console.Write("> ");
|
||||
data = Console.ReadLine();
|
||||
if (data == "exit")
|
||||
//if (data == "exit" || !ws.IsKeepAlive)
|
||||
//if (data == "exit" || !ws.IsAlive)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
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.
@ -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);
|
||||
|
||||
|
@ -153,35 +153,29 @@ namespace WebSocketSharp
|
||||
|
||||
#region Properties
|
||||
|
||||
public string BinaryType
|
||||
{
|
||||
public string BinaryType {
|
||||
get { return _binaryType; }
|
||||
}
|
||||
|
||||
public ulong BufferedAmount
|
||||
{
|
||||
get
|
||||
{
|
||||
public ulong BufferedAmount {
|
||||
get {
|
||||
ulong bufferedAmount = 0;
|
||||
|
||||
lock (_unTransmittedBuffer.SyncRoot)
|
||||
{
|
||||
foreach (WsFrame frame in _unTransmittedBuffer)
|
||||
{
|
||||
bufferedAmount += frame.PayloadLength;
|
||||
}
|
||||
}
|
||||
|
||||
return bufferedAmount;
|
||||
}
|
||||
}
|
||||
|
||||
public string Extensions
|
||||
{
|
||||
public string Extensions {
|
||||
get { return _extensions; }
|
||||
}
|
||||
|
||||
public bool IsKeepAlive {
|
||||
public bool IsAlive {
|
||||
get {
|
||||
if (_readyState != WsState.OPEN)
|
||||
return false;
|
||||
@ -196,17 +190,14 @@ namespace WebSocketSharp
|
||||
}
|
||||
}
|
||||
|
||||
public string Protocol
|
||||
{
|
||||
public string Protocol {
|
||||
get { return _protocol; }
|
||||
}
|
||||
|
||||
public WsState ReadyState
|
||||
{
|
||||
public WsState ReadyState {
|
||||
get { return _readyState; }
|
||||
|
||||
private set
|
||||
{
|
||||
private set {
|
||||
_readyState = value;
|
||||
|
||||
switch (value)
|
||||
@ -224,13 +215,11 @@ namespace WebSocketSharp
|
||||
}
|
||||
}
|
||||
|
||||
public SynchronizedCollection<WsFrame> UnTransmittedBuffer
|
||||
{
|
||||
public SynchronizedCollection<WsFrame> UnTransmittedBuffer {
|
||||
get { return _unTransmittedBuffer; }
|
||||
}
|
||||
|
||||
public string Url
|
||||
{
|
||||
public string Url {
|
||||
get { return _uri.ToString(); }
|
||||
}
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user