IVsLanguageDebugInfo.ResolveName Method (String, UInt32, IVsEnumDebugName)

 

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)

int ResolveName(
	string pszName,
	uint dwFlags,
	out IVsEnumDebugName ppNames
)

Parameters

pszName
Type: System.String

[in] String containing the name.

dwFlags
Type: System.UInt32

[in] Flags. For more information, see RESOLVENAMEFLAGS.

ppNames
Type: Microsoft.VisualStudio.TextManager.Interop.IVsEnumDebugName

[out] Returns an object containing a list of names. For more information, see IVsEnumDebugName.

Return Value

Type: System.Int32

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

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.

Return to top
Show: