[Modify] Rename it

This commit is contained in:
sta 2021-05-02 21:55:07 +09:00
parent 8237a384bc
commit 6314847213

View File

@ -71,7 +71,7 @@ namespace WebSocketSharp.Net
private bool _disposed; private bool _disposed;
private bool _ignoreWriteExceptions; private bool _ignoreWriteExceptions;
private volatile bool _listening; private volatile bool _listening;
private Logger _logger; private Logger _log;
private string _objectName; private string _objectName;
private HttpListenerPrefixCollection _prefixes; private HttpListenerPrefixCollection _prefixes;
private string _realm; private string _realm;
@ -104,7 +104,7 @@ namespace WebSocketSharp.Net
_contextRegistry = new LinkedList<HttpListenerContext> (); _contextRegistry = new LinkedList<HttpListenerContext> ();
_contextRegistrySync = ((ICollection) _contextRegistry).SyncRoot; _contextRegistrySync = ((ICollection) _contextRegistry).SyncRoot;
_logger = new Logger (); _log = new Logger ();
_objectName = GetType ().ToString (); _objectName = GetType ().ToString ();
_prefixes = new HttpListenerPrefixCollection (this); _prefixes = new HttpListenerPrefixCollection (this);
_waitQueue = new Queue<HttpListenerAsyncResult> (); _waitQueue = new Queue<HttpListenerAsyncResult> ();
@ -336,7 +336,7 @@ namespace WebSocketSharp.Net
/// </value> /// </value>
public Logger Log { public Logger Log {
get { get {
return _logger; return _log;
} }
} }