websocket-server – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5  
6 namespace WebSockets.Server
7 {
8 /// <summary>
9 /// Implement this to decide what connection to use based on the http header
10 /// </summary>
11 public interface IServiceFactory
12 {
13 IService CreateInstance(ConnectionDetails connectionDetails);
14 }
15 }