示例#1
0
 public void OnVideoEncoded(object source, VideoEventArgs arg)
 {
     Console.WriteLine("Text Sent!");
     arg.Video.EmailState = Video.NotificationState.Sent;
 }
示例#2
0
 public void SendMessage(object source, VideoEventArgs args)
 {
     Console.WriteLine("Message service sending the text message " + args.Video.Title);
 }
示例#3
0
 public void OnVideoEncoded(object source, VideoEventArgs args)
 {
     Console.WriteLine("Encode finish.");
     args.Video.TextState = Video.NotificationState.Sent;
 }