wpf_player.ObservableStream.OnPositionChanges C# (CSharp) 메소드

OnPositionChanges() 보호된 메소드

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
리턴 void
        protected virtual void OnPositionChanges(EventArgs args)
        {
            EventHandler handler = PositionChanged;
            if (handler != null)
            {
                handler(this, args);
            }
        }