]> git.deb.at Git - rhonda/impostor.hazel.git/commitdiff
Undo an accidental class name change
authorForest <chocozilla@gmail.com>
Thu, 27 Dec 2018 22:32:59 +0000 (14:32 -0800)
committerForest <chocozilla@gmail.com>
Thu, 27 Dec 2018 22:32:59 +0000 (14:32 -0800)
Hazel/ConnectionListener.cs
Hazel/NetworkConnectionListener.cs
Hazel/NewConnectionEventArgs.cs

index 3acda8ec0559a6fc8a399aaaf2b2a4854edc6b4c..fde09c6a691734ed7e32cee75e8fd12536f0c619 100644 (file)
@@ -24,7 +24,7 @@ namespace Hazel
     ///     </para>
     /// </remarks>
     /// <threadsafety static="true" instance="true"/>
-    public abstract class List : IDisposable
+    public abstract class ConnectionListener : IDisposable
     {
         /// <summary>
         ///     Invoked when a new client connects.
index 9e9bb72426edec26f4c6593120899977bccc9d0a..1e5e237aaa00e17b90abb9a6208bc47897205c1e 100644 (file)
@@ -8,10 +8,10 @@ using System.Text;
 namespace Hazel
 {
     /// <summary>
-    ///     Abstract base class for a <see cref="List"/> for network based connections.
+    ///     Abstract base class for a <see cref="ConnectionListener"/> for network based connections.
     /// </summary>
     /// <threadsafety static="true" instance="true"/>
-    public abstract class NetworkConnectionListener : List
+    public abstract class NetworkConnectionListener : ConnectionListener
     {
         /// <summary>
         ///     The local end point the listener is listening for new clients on.
index 5df102cf32cfdaa5a4766ba4b5caef3e9120f60b..64baad528a5591590923429abb83272a4be73230 100644 (file)
@@ -6,12 +6,12 @@ using System.Text;
 namespace Hazel
 {
     /// <summary>
-    ///     Event arguments for the <see cref="List.NewConnection"/> event.
+    ///     Event arguments for the <see cref="ConnectionListener.NewConnection"/> event.
     /// </summary>
     /// <remarks>
     ///     <para>
     ///         This contains the new connection for the client that connection and is passed to subscribers of the
-    ///         <see cref="List.NewConnection"/> event.
+    ///         <see cref="ConnectionListener.NewConnection"/> event.
     ///     </para>
     ///     <include file="DocInclude/common.xml" path="docs/item[@name='Recyclable']/*" />
     /// </remarks>