Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChatServerListener" /> class.
 /// </summary>
 /// <param name="endpoint">The endpoint.</param>
 /// <param name="plugInManager">The plug in manager.</param>
 /// <param name="loggerFactory">The logger factory.</param>
 public ChatServerListener(ChatServerEndpoint endpoint, PlugInManager plugInManager, ILoggerFactory loggerFactory)
 {
     this.endpoint      = endpoint;
     this.plugInManager = plugInManager;
     this.loggerFactory = loggerFactory;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChatServerListener"/> class.
 /// </summary>
 /// <param name="endpoint">The endpoint.</param>
 /// <param name="plugInManager">The plug in manager.</param>
 public ChatServerListener(ChatServerEndpoint endpoint, PlugInManager plugInManager)
 {
     this.endpoint      = endpoint;
     this.plugInManager = plugInManager;
 }