Beispiel #1
0
 public void OnStreamUpdate(object sender, StreamUpdateEventArgs args)
 {
     foreach (var plugin in plugins)
     {
         plugin.OnStreamUpdate(sender, args);
     }
 }
Beispiel #2
0
 public void OnStreamUpdate(object sender, StreamUpdateEventArgs args)
 {
     foreach (var plugin in plugins)
         plugin.OnStreamUpdate(sender, args);
 }
Beispiel #3
0
 void IPlugin.OnStreamUpdate(object sender, StreamUpdateEventArgs args)
 {
     throw new NotImplementedException();
 }
Beispiel #4
0
 void IPlugin.OnStreamUpdate(object sender, StreamUpdateEventArgs args)
 {
 }
Beispiel #5
0
 public void OnStreamUpdate(object sender, StreamUpdateEventArgs args)
 {
 }
Beispiel #6
0
 public void OnStreamUpdate(object sender, StreamUpdateEventArgs args)
 {
 }
Beispiel #7
0
 void IPlugin.OnStreamUpdate(object sender, StreamUpdateEventArgs args)
 {
     stream.Write(args.Data, 0, args.Data.Length);
     if (!IsPlaying)
         StartPlay();
 }