Пример #1
0
 public void InitializeStream()
 {
     simpleStream = new HTTPSimpleStreamInterface(flash);
     simpleStream.OnInitialized += new Action(() => currentVolumeSettings.SetStream(simpleStream));
 }
Пример #2
0
 public void SetStream(HTTPSimpleStreamInterface target)
 {
     stream = target;
     stream.setVolume(muted ? (byte)0 : volumeLevel);
 }