IVsLanguageDebugInfo::ResolveName Method (String^, UInt32, IVsEnumDebugName^)
Visual Studio 2015
Disambiguates the given name, providing non-ambiguous names for all entities that "match" the name.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
int ResolveName( String^ pszName, unsigned int dwFlags, [OutAttribute] 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::Int32If 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.
Show: