示例#1
0
 // Handler for the InitialContextReceived event. 
 public void OnInitialContextReceived(object sender, InitialContextEventArgs args)
 {
     channelStatus.Foreground = new SolidColorBrush(Colors.Green);
     channelStatus.Text = "Ready";
     
     Logger("InitialContextReceived event raised. \nData received: " + args.ApplicationData);
 }
示例#2
0
 static void Conversation_InitialContextReceived(object sender, InitialContextEventArgs e)
 {
     Trace.WriteLine($"{GetRunningMethodName}:{e.ApplicationData}");
 }