Exemplo n.º 1
0
 public Config(ServerPoint server, ServerPoint?forward, bool suppressSocketError)
 {
     Server              = server;
     Forward             = forward;
     SuppressSocketError = suppressSocketError;
 }
Exemplo n.º 2
0
 internal Commander(UdpClient server, ServerPoint config)
 {
     m_server = server ?? throw new ArgumentNullException(nameof(server));
     m_config = config;
 }