Share via


IVsLanguageDebugInfoRemap.RemapBreakpoint Method

Remaps a breakpoint.

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

Syntax

'Declaration
Function RemapBreakpoint ( _
    pUserBreakpointRequest As Object, _
    <OutAttribute> ByRef ppMappedBreakpointRequest As Object _
) As Integer
int RemapBreakpoint(
    Object pUserBreakpointRequest,
    out Object ppMappedBreakpointRequest
)
int RemapBreakpoint(
    [InAttribute] Object^ pUserBreakpointRequest, 
    [OutAttribute] Object^% ppMappedBreakpointRequest
)
abstract RemapBreakpoint : 
        pUserBreakpointRequest:Object * 
        ppMappedBreakpointRequest:Object byref -> int 
function RemapBreakpoint(
    pUserBreakpointRequest : Object, 
    ppMappedBreakpointRequest : Object
) : int

Parameters

Return Value

Type: System.Int32
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
);

.NET Framework Security

See Also

Reference

IVsLanguageDebugInfoRemap Interface

Microsoft.VisualStudio.TextManager.Interop Namespace