wpf_player.ObservableStream.OnPositionChanges C# (CSharp) Method

OnPositionChanges() protected method

This method calls the event handler for the position changed event
protected OnPositionChanges ( EventArgs args ) : void
args System.EventArgs Arguments that will be passed to the handler
return void
        protected virtual void OnPositionChanges(EventArgs args)
        {
            EventHandler handler = PositionChanged;
            if (handler != null)
            {
                handler(this, args);
            }
        }