public MainExampleServerlForm(ExampleServerSettings settings)
 {
     InitializeComponent();
     this.server = new ExampleServer(this, settings);
     this.server.messageLog += addMessageLogText;
     this.propertyGrid1.SelectedObject = settings;
 }
Beispiel #2
0
 public MainExampleServerlForm(ExampleServerSettings settings)
 {
     InitializeComponent();
     this.server                       = new ExampleServer(this, settings);
     this.server.messageLog           += addMessageLogText;
     this.propertyGrid1.SelectedObject = settings;
 }
 public ExampleServer(MainExampleServerlForm form, ExampleServerSettings serverSettings)
 {
     this.exampleServerForm = form;
     this.serverSettings    = serverSettings;
 }
 public ExampleServer(MainExampleServerlForm form, ExampleServerSettings serverSettings)
 {
     this.exampleServerForm = form;
     this.serverSettings = serverSettings;
 }