Microsoft.PlayerFramework.Adaptive.HLS.HLSPlugin.HLSPlaylist_StreamSelectionChanged C# (CSharp) Method

HLSPlaylist_StreamSelectionChanged() private method

Called when the stream selection changes between audio, video or both.
private HLSPlaylist_StreamSelectionChanged ( object sender, IHLSStreamSelectionChangedEventArgs args ) : void
sender object The currently playing HLS playlist.
args IHLSStreamSelectionChangedEventArgs The that describes the stream /// selection switch.
return void
    private void HLSPlaylist_StreamSelectionChanged(object sender, IHLSStreamSelectionChangedEventArgs args)
    {
      if (null != StreamSelectionChanged)
        this.StreamSelectionChanged(sender, args);
    }