Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
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
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.
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.