示例#1
0
 private void LogEvent(object sender, ClientLogEventArgs e)
 {
     //Feed the log of the server to the connection progress label
     lblConnectionProgress.Text = e.Message;
 }
示例#2
0
 static void LogEvent(object sender, ClientLogEventArgs e)
 {
     Console.WriteLine(e.Message);
 }
示例#3
0
 private void LogEvent(object sender, ClientLogEventArgs e)
 {
     //Display the text the component wants to log
     lblConnectionProgress.Text = e.Message;
 }