Partager via


IVsLanguageDebugInfo.GetNameOfLocation, méthode

Génère un nom pour l'emplacement donné dans le fichier.

Espace de noms :  Microsoft.VisualStudio.TextManager.Interop
Assembly :  Microsoft.VisualStudio.TextManager.Interop (dans Microsoft.VisualStudio.TextManager.Interop.dll)

Syntaxe

'Déclaration
Function GetNameOfLocation ( _
    pBuffer As IVsTextBuffer, _
    iLine As Integer, _
    iCol As Integer, _
    <OutAttribute> ByRef pbstrName As String, _
    <OutAttribute> ByRef piLineOffset As Integer _
) As Integer
int GetNameOfLocation(
    IVsTextBuffer pBuffer,
    int iLine,
    int iCol,
    out string pbstrName,
    out int piLineOffset
)
int GetNameOfLocation(
    [InAttribute] IVsTextBuffer^ pBuffer, 
    [InAttribute] int iLine, 
    [InAttribute] int iCol, 
    [OutAttribute] String^% pbstrName, 
    [OutAttribute] int% piLineOffset
)
abstract GetNameOfLocation : 
        pBuffer:IVsTextBuffer * 
        iLine:int * 
        iCol:int * 
        pbstrName:string byref * 
        piLineOffset:int byref -> int
function GetNameOfLocation(
    pBuffer : IVsTextBuffer, 
    iLine : int, 
    iCol : int, 
    pbstrName : String, 
    piLineOffset : int
) : int

Paramètres

  • iLine
    Type : Int32

    [in] numéro de la ligne contenant l'emplacement.

  • iCol
    Type : Int32

    [in] colonne contenant l'emplacement dans la ligne.

  • pbstrName
    Type : String%

    [] retourne une chaîne contenant le nom de l'emplacement.

  • piLineOffset
    Type : Int32%

    [] retourne un entier contenant l'offset de ligne d'iLine.

Valeur de retour

Type : Int32
Si la méthode réussit, elle retourne S_OK.En cas d'échec, un code d'erreur est retourné.

Notes

Signature de COM

De textmgr.idl :

HRESULT IVsLanguageDebugInfo::GetNameOfLocation(
   [in] IVsTextBuffer *pBuffer, 
   [in] long iLine, 
   [in] long iCol, 
   [out] BSTR *pbstrName, 
   [out] long *piLineOffset
);

Cette méthode génère un nom pour l'emplacement donné dans le fichier donné. Ce nom « représente l'entité nommée le plus profond » dans la source. Si non null, le paramètre d'piLineOffset est rempli avec l'offset de la première ligne de l'entité nommée. Retourne S_FALSE si la position ne fait pas partie de tout élément intéressant.

Sécurité .NET Framework

Voir aussi

Référence

IVsLanguageDebugInfo Interface

Microsoft.VisualStudio.TextManager.Interop, espace de noms