Run() public method

public Run ( ConnectionInformation information ) : IProgressEvents
information SonarLint.VisualStudio.Integration.Service.ConnectionInformation
return IProgressEvents
        void IConnectionWorkflowExecutor.EstablishConnection(ConnectionInformation information)
        {
            ConnectionWorkflow workflow       = new ConnectionWorkflow(this.host, this.ConnectCommand);
            IProgressEvents    progressEvents = workflow.Run(information);

            SetConnectionInProgress(progressEvents);
        }
 void IConnectionWorkflowExecutor.EstablishConnection(ConnectionInformation information)
 {
     ConnectionWorkflow workflow = new ConnectionWorkflow(this.host, this.ConnectCommand);
     IProgressEvents progressEvents = workflow.Run(information);
     this.SetConnectionInProgress(progressEvents);
 }