コード例 #1
0
        private bool RunCommand(IGitRemoteCommand command, string change)
        {
            command.OwnerForm = this;
            command.Title     = string.Format(_downloadCaption.Text, change);
            command.Remote    = _NO_TRANSLATE_Remotes.Text;

            command.Execute();

            return(!command.ErrorOccurred);
        }
コード例 #2
0
 public GitRemoteCommandCompletedEventArgs(IGitRemoteCommand command, bool isError, bool handled)
 {
     Command = command;
     IsError = isError;
     Handled = handled;
 }
コード例 #3
0
        private bool RunCommand(IGitRemoteCommand command, string change)
        {
            command.OwnerForm = this;
            command.Title = string.Format(_downloadCaption.Text, change);
            command.Remote = _NO_TRANSLATE_Remotes.Text;

            command.Execute();

            return !command.ErrorOccurred;
        }
コード例 #4
0
 public GitRemoteCommandCompletedEventArgs(IGitRemoteCommand command, bool isError, bool handled)
 {
     Command = command;
     IsError = isError;
     Handled = handled;
 }