websocket-server – Rev 1

Subversion Repositories:
Rev:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace WebSockets.Server
{
    /// <summary>
    /// Implement this to decide what connection to use based on the http header
    /// </summary>
    public interface IServiceFactory
    {
        IService CreateInstance(ConnectionDetails connectionDetails);
    }
}