LanguageService::ResolveName Method (String^, UInt32, IVsEnumDebugName^)
Visual Studio 2015
Returns a list of method names that match the given name modified by the specified flags.
Assembly: Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)
public: virtual int ResolveName( String^ name, unsigned int flags, [OutAttribute] IVsEnumDebugName^% ppNames )
Parameters
- name
-
Type:
System::String^
[in] The name to match.
- flags
-
Type:
System::UInt32
[in] A collection of flags from the RESOLVENAMEFLAGS enumeration.
- ppNames
-
Type:
Microsoft.VisualStudio.TextManager.Interop::IVsEnumDebugName^
[out] Returns an IVsEnumDebugName object containing the list of name or a null value.
This method is typically used to resolve a breakpoint on the specified method since the IVsDebugName object stored in the IVsEnumDebugName object contains the name and the location of the method.
The base method returns E_NOTIMPL. This method is an implementation of IVsLanguageDebugInfo::ResolveName.
Show: