IVsLanguageDebugInfoRemap.RemapBreakpoint(Object, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Remaps a breakpoint.
public:
int RemapBreakpoint(System::Object ^ pUserBreakpointRequest, [Runtime::InteropServices::Out] System::Object ^ % ppMappedBreakpointRequest);
int RemapBreakpoint(winrt::Windows::Foundation::IInspectable const & pUserBreakpointRequest, [Runtime::InteropServices::Out] winrt::Windows::Foundation::IInspectable const & & ppMappedBreakpointRequest);
public int RemapBreakpoint (object pUserBreakpointRequest, out object ppMappedBreakpointRequest);
abstract member RemapBreakpoint : obj * obj -> int
Public Function RemapBreakpoint (pUserBreakpointRequest As Object, ByRef ppMappedBreakpointRequest As Object) As Integer
Parameters
- pUserBreakpointRequest
- Object
[in] The breakpoint to be remapped.
- ppMappedBreakpointRequest
- Object
[out] The remapped breakpoint.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
pUserBreakpointRequest
and ppMappedBreakpointRequest
must both implement IDebugBreakpointRequest2 and IDebugBreakpointRequest3 interfaces.
COM Signature
From textmgr90.idl:
HRESULT RemapBreakpoint(
[in] IUnknown* pUserBreakpointRequest,
[out]IUnknown** ppMappedBreakpointRequest
);