LanguageService::ResolveName Method (String^, UInt32, IVsEnumDebugName^)

 

Returns a list of method names that match the given name modified by the specified flags.

Namespace:   Microsoft.VisualStudio.Package
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.

Return Value

Type: System::Int32

If successful, returns S_OK; otherwise, returns an error code.

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.

Return to top
Show: