Resolver.GetQuickInfo Method

Gets the IntelliSense Quick Info data for the code object at the specified location.

Namespace:  Microsoft.SqlServer.Management.SqlParser.Intellisense
Assembly:  Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)

Syntax

'Declaration
Public Shared Function GetQuickInfo ( _
    parseResult As ParseResult, _
    line As Integer, _
    col As Integer, _
    displayInfoProvider As IMetadataDisplayInfoProvider _
) As CodeObjectQuickInfo
'Usage
Dim parseResult As ParseResult
Dim line As Integer
Dim col As Integer
Dim displayInfoProvider As IMetadataDisplayInfoProvider
Dim returnValue As CodeObjectQuickInfo

returnValue = Resolver.GetQuickInfo(parseResult, _
    line, col, displayInfoProvider)
public static CodeObjectQuickInfo GetQuickInfo(
    ParseResult parseResult,
    int line,
    int col,
    IMetadataDisplayInfoProvider displayInfoProvider
)
public:
static CodeObjectQuickInfo^ GetQuickInfo(
    ParseResult^ parseResult, 
    int line, 
    int col, 
    IMetadataDisplayInfoProvider^ displayInfoProvider
)
static member GetQuickInfo : 
        parseResult:ParseResult * 
        line:int * 
        col:int * 
        displayInfoProvider:IMetadataDisplayInfoProvider -> CodeObjectQuickInfo 
public static function GetQuickInfo(
    parseResult : ParseResult, 
    line : int, 
    col : int, 
    displayInfoProvider : IMetadataDisplayInfoProvider
) : CodeObjectQuickInfo

Parameters

  • line
    Type: System.Int32
    The line number of the cursor position.
  • col
    Type: System.Int32
    The column number of the cursor position.

Return Value

Type: Babel.CodeObjectQuickInfo
A CodeObjectQuickInfo object that contains the Quick Info data.