public FileSystemNetworkServer(ConnectionFactory connectionFactory, CommandBuilderFactory commandBuilderFactory, CommandProcessorProviderFactory commandProcessorProviderFactory, IPEndPoint localEndPoint)
			: base(connectionFactory, commandBuilderFactory, commandProcessorProviderFactory, localEndPoint)
		{
			Initialize();
		}
Ejemplo n.º 2
0
 public CommandNetworkServer(ConnectionFactory connectionFactory, CommandBuilderFactory commandBuilderFactory, CommandProcessorProviderFactory commandProcessorProviderFactory, IPEndPoint localEndPoint)
     : base(connectionFactory, localEndPoint)
 {
     this.CommandBuilderFactory           = commandBuilderFactory;
     this.CommandProcessorProviderFactory = commandProcessorProviderFactory;
 }
		public FileSystemNetworkServer(ConnectionFactory connectionFactory, CommandBuilderFactory commandBuilderFactory, CommandProcessorProviderFactory commandProcessorProviderFactory, IPAddress address, int port)
			: base(connectionFactory, commandBuilderFactory, commandProcessorProviderFactory, address, port)
		{
			Initialize();
		}
Ejemplo n.º 4
0
 public CommandNetworkServer(ConnectionFactory connectionFactory, CommandBuilderFactory commandBuilderFactory, CommandProcessorProviderFactory commandProcessorProviderFactory, string address, int port)
     : this(connectionFactory, commandBuilderFactory, commandProcessorProviderFactory, IPAddress.Parse(address), port)
 {
 }
Ejemplo n.º 5
0
 public CommandNetworkServer(ConnectionFactory connectionFactory, CommandBuilderFactory commandBuilderFactory, CommandProcessorProviderFactory commandProcessorProviderFactory, IPAddress address, int port)
     : this(connectionFactory, commandBuilderFactory, commandProcessorProviderFactory, new IPEndPoint(address, port))
 {
 }
Ejemplo n.º 6
0
 public CommandNetworkServer(ConnectionFactory connectionFactory, CommandBuilderFactory commandBuilderFactory, CommandProcessorProviderFactory commandProcessorProviderFactory, int port)
     : this(connectionFactory, commandBuilderFactory, commandProcessorProviderFactory, IPAddress.Any, port)
 {
 }
		public CommandNetworkServer(ConnectionFactory connectionFactory, CommandBuilderFactory commandBuilderFactory, CommandProcessorProviderFactory commandProcessorProviderFactory, IPEndPoint localEndPoint)
			: base(connectionFactory, localEndPoint)
		{
			this.CommandBuilderFactory = commandBuilderFactory;
			this.CommandProcessorProviderFactory = commandProcessorProviderFactory;
		}
		public CommandNetworkServer(ConnectionFactory connectionFactory, CommandBuilderFactory commandBuilderFactory, CommandProcessorProviderFactory commandProcessorProviderFactory, IPAddress address, int port)
			: this(connectionFactory, commandBuilderFactory, commandProcessorProviderFactory, new IPEndPoint(address, port))
		{
		}
		public CommandNetworkServer(ConnectionFactory connectionFactory, CommandBuilderFactory commandBuilderFactory, CommandProcessorProviderFactory commandProcessorProviderFactory, string address, int port)
			: this(connectionFactory, commandBuilderFactory, commandProcessorProviderFactory, IPAddress.Parse(address), port)
		{
		}
		public CommandNetworkServer(ConnectionFactory connectionFactory, CommandBuilderFactory commandBuilderFactory, CommandProcessorProviderFactory commandProcessorProviderFactory, int port)
			: this(connectionFactory, commandBuilderFactory, commandProcessorProviderFactory, IPAddress.Any,  port)
		{
		}