IdeIntegrationSettings.

GetOpenInIdeCall(string, string, string, string, string) Method

Summary

Returns the JavaScript which should be called to open the file affected by an issue in an IDE with all patterns of OpenInIdeCall replaced.

Syntax

public string GetOpenInIdeCall(string filePathExpression, string lineExpression, string endLineExpression, string columnExpression, string endColumnExpression)

Parameters

Name Type Description
filePathExpression string Expression which should be used to get the path and name of the file at runtime.
lineExpression string Expression which should be used to get the line number at runtime.
endLineExpression string Expression which should be used to get the end of the line range at runtime.
columnExpression string Expression which should be used to get the column number at runtime.
endColumnExpression string Expression which should be used to get the end of the column range at runtime.

Return Value

Type Description
string JavaScript which should be called to open the file affected by an issue in an IDE with all patterns replaced.
GitHub