Animatroller.Framework.LogicalDevice.VideoPlayer.RaiseExecuteCommand C# (CSharp) Метод

RaiseExecuteCommand() защищенный Метод

protected RaiseExecuteCommand ( VideoCommandEventArgs command, string videoFile ) : void
command Animatroller.Framework.LogicalDevice.Event.VideoCommandEventArgs
videoFile string
Результат void
        protected virtual void RaiseExecuteCommand(VideoCommandEventArgs.Commands command, string videoFile)
        {
            var handler = ExecuteCommand;
            if (handler != null)
                handler(this, new VideoCommandEventArgs(command, videoFile));
        }