Example #1
0
 private static void videoChannelEndStart(IAsyncResult result)
 {
     try
     {
         VideoChannel channel = (VideoChannel)result.AsyncState;
         channel.EndStart(result);
         RaiseVideoAvailable(channel.CaptureVideoWindow, VideoDirection.Outgoing);
     }
     catch (Exception ex)
     {
         Console.WriteLine(ex);
     }
 }