[Modify] Rename it
This commit is contained in:
parent
daa731618b
commit
bb8010577b
@ -60,7 +60,7 @@ namespace WebSocketSharp.Net
|
|||||||
private Exception _exception;
|
private Exception _exception;
|
||||||
private object _state;
|
private object _state;
|
||||||
private object _sync;
|
private object _sync;
|
||||||
private bool _syncCompleted;
|
private bool _completedSynchronously;
|
||||||
private ManualResetEvent _waitHandle;
|
private ManualResetEvent _waitHandle;
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
@ -128,7 +128,7 @@ namespace WebSocketSharp.Net
|
|||||||
|
|
||||||
public bool CompletedSynchronously {
|
public bool CompletedSynchronously {
|
||||||
get {
|
get {
|
||||||
return _syncCompleted;
|
return _completedSynchronously;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -178,10 +178,10 @@ namespace WebSocketSharp.Net
|
|||||||
complete ();
|
complete ();
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void Complete (HttpListenerContext context, bool syncCompleted)
|
internal void Complete (HttpListenerContext context, bool completedSynchronously)
|
||||||
{
|
{
|
||||||
_context = context;
|
_context = context;
|
||||||
_syncCompleted = syncCompleted;
|
_completedSynchronously = completedSynchronously;
|
||||||
|
|
||||||
complete ();
|
complete ();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user