WriteToSonarLintOutputPane() public static method

Writes a message to the SonarLint output pane. Will append a new line after the message.
public static WriteToSonarLintOutputPane ( IServiceProvider serviceProvider, string messageFormat ) : void
serviceProvider IServiceProvider
messageFormat string
return void
Beispiel #1
0
 private void OutputMessage(string messageFormat, params object[] args)
 {
     VsShellUtils.WriteToSonarLintOutputPane(this.host, messageFormat, args);
 }
Beispiel #2
0
 public void Write(string message)
 {
     VsShellUtils.WriteToSonarLintOutputPane(ServiceProvider.GlobalProvider, message);
 }