다음을 통해 공유


IVsLanguageDebugInfo.ResolveName Method

Disambiguates the given name, providing non-ambiguous names for all entities that "match" the name.

Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

Syntax

Function ResolveName ( _
    pszName As String, _
    dwFlags As UInteger, _
    <OutAttribute> ByRef ppNames As IVsEnumDebugName _
) As Integer

Dim instance As IVsLanguageDebugInfo
Dim pszName As String
Dim dwFlags As UInteger
Dim ppNames As IVsEnumDebugName
Dim returnValue As Integer

returnValue = instance.ResolveName(pszName, _
    dwFlags, ppNames)
int ResolveName(
    string pszName,
    uint dwFlags,
    out IVsEnumDebugName ppNames
)
int ResolveName(
    [InAttribute] String^ pszName, 
    [InAttribute] unsigned int dwFlags, 
    [OutAttribute] IVsEnumDebugName^% ppNames
)
function ResolveName(
    pszName : String, 
    dwFlags : uint, 
    ppNames : IVsEnumDebugName
) : int

Parameters

Return Value

Type: System.Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From textmgr.idl:

HRESULT IVsLanguageDebugInfo::ResolveName(
   [in] LPCOLESTR pszName, 
   [in] DWORD dwFlags, 
   [out] IVsEnumDebugName **ppNames
);

This method disambiguates the given name, providing non-ambiguous names for all entities that "match" the name.

Permissions

See Also

Reference

IVsLanguageDebugInfo Interface

IVsLanguageDebugInfo Members

Microsoft.VisualStudio.TextManager.Interop Namespace