/// </para>
/// </remarks>
/// <threadsafety static="true" instance="true"/>
- public abstract class List : IDisposable
+ public abstract class ConnectionListener : IDisposable
{
/// <summary>
/// Invoked when a new client connects.
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.
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>