BasicCommandHandlers.CommandViewer.OnCommandSent C# (CSharp) Метод

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

protected OnCommandSent ( object sender, CommandSentEventArgs e ) : void
sender object
e CommonServices.CommandSentEventArgs
Результат void
        protected override void OnCommandSent( object sender, CommandSentEventArgs e )
        {
            if( !e.Canceled && Notifications != null )
                Notifications.ShowNotification( new Guid( PluginId ), "Command viewer : Command sent", "Command : " + e.Command, 1000 );
        }