IVsLanguageDebugInfoRemap::RemapBreakpoint Method (Object^, Object^)

 

Remaps a breakpoint.

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

int RemapBreakpoint(
	Object^ pUserBreakpointRequest,
	[OutAttribute] Object^% ppMappedBreakpointRequest
)

Parameters

pUserBreakpointRequest
Type: System::Object^

[in] The breakpoint to be remapped.

ppMappedBreakpointRequest
Type: System::Object^

[out] The remapped breakpoint.

Return Value

Type: System::Int32

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

pUserBreakpointRequest and ppMappedBreakpointRequest must both implement IDebugBreakpointRequest2 and IDebugBreakpointRequest3 interfaces.

From textmgr90.idl:

HRESULT RemapBreakpoint(
    [in] IUnknown* pUserBreakpointRequest,
    [out]IUnknown** ppMappedBreakpointRequest
);
Return to top
Show: