IDebugBreakpointRequest3::GetRequestInfo2

Applies to: yesVisual Studio noVisual Studio for Mac

Note

This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

This method gets the breakpoint request information that describes this breakpoint request.

Syntax

HRESULT GetRequestInfo2(
   BPREQI_FIELDS      dwFields,
   BP_REQUEST_INFO2*  bBPRequestInfo
);
int GetRequestInfo2(
   enum_BPREQI_FIELDS  dwFields,
   BP_REQUEST_INFO2[]  bBPRequestInfo
);

Parameters

dwFields
[in] A combination of flags from the BPREQI_FIELDS enumeration that determine which fields of pBPRequestInfo are to be filled in.

bBPRequestInfo
[out] The BP_REQUEST_INFO2 structure to be filled in.

Return Value

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

Remarks

There is more information in this request than is returned from the GetRequestInfo method.

See also