Skip to content

Delete unnecessary spaces #2491

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
182 changes: 91 additions & 91 deletions docs/extensibility/debugger/reference/bp-request-info.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,103 +2,103 @@
title: "BP_REQUEST_INFO | Microsoft Docs"
ms.date: "11/04/2016"
ms.topic: "conceptual"
f1_keywords:
f1_keywords:
- "BP_REQUEST_INFO"
helpviewer_keywords:
helpviewer_keywords:
- "BP_REQUEST_INFO structure"
ms.assetid: 42a31412-5b6b-47fe-a762-0c2bc769e1cc
author: "gregvanl"
ms.author: "gregvanl"
manager: jillfra
ms.workload:
ms.workload:
- "vssdk"
---
# BP_REQUEST_INFO
Contains the information required to implement a breakpoint.
## Syntax
```cpp
typedef struct _BP_REQUEST_INFO {
BPREQI_FIELDS dwFields;
GUID guidLanguage;
BP_LOCATION bpLocation;
IDebugProgram2* pProgram;
BSTR bstrProgramName;
IDebugThread2* pThread;
BSTR bstrThreadName;
BP_CONDITION bpCondition;
BP_PASSCOUNT bpPassCount;
BP_FLAGS dwFlags;
} BP_REQUEST_INFO;
```
```csharp
public struct BP_REQUEST_INFO {
public uint dwFields;
public Guid guidLanguage;
public BP_LOCATION bpLocation;
public IDebugProgram2 pProgram;
public string bstrProgramName;
public IDebugThread2 pThread;
public string bstrThreadName;
public BP_CONDITION bpCondition;
public BP_PASSCOUNT bpPassCount;
public uint dwFlags;
};
```
## Members
`dwFields`
A combination of flags from the [BPREQI_FIELDS](../../../extensibility/debugger/reference/bpreqi-fields.md) enumeration that specifies which fields are filled out.
`guidLanguage`
The language GUID.
`bpLocation`
The [BP_LOCATION](../../../extensibility/debugger/reference/bp-location.md) structure that specifies the type of the breakpoint location.
`pProgram`
The [IDebugProgram2](../../../extensibility/debugger/reference/idebugprogram2.md) object that represents the application in which the breakpoint occurs.
`bstrProgramName`
The name of the application in which the breakpoint occurs.
`pThread`
The [IDebugThread2](../../../extensibility/debugger/reference/idebugthread2.md) object that represents the thread in which the breakpoint occurs.
`bstrThreadName`
The name of the thread in which the breakpoint occurs.
`bpCondition`
The [BP_CONDITION](../../../extensibility/debugger/reference/bp-condition.md) structure that describes the conditions under which the breakpoint will fire.
`bpPassCount`
The [BP_PASSCOUNT](../../../extensibility/debugger/reference/bp-passcount.md) structure that contains the pass count information of the breakpoint.
`dwFlags`
A combination of flags from the [BP_FLAGS](../../../extensibility/debugger/reference/bp-flags.md) enumeration that specifies the flags for the requested breakpoint.
## Remarks
This structure is returned by the [GetRequestInfo](../../../extensibility/debugger/reference/idebugbreakpointrequest2-getrequestinfo.md) method.
If you need to obtain the debug engine vendor GUID, the breakpoint constraint or the tracepoint, see the [BP_REQUEST_INFO2](../../../extensibility/debugger/reference/bp-request-info2.md) structure.
## Requirements
Header: msdbg.h
Namespace: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
## See Also
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
[GetRequestInfo](../../../extensibility/debugger/reference/idebugbreakpointrequest2-getrequestinfo.md)
[BPREQI_FIELDS](../../../extensibility/debugger/reference/bpreqi-fields.md)
[BP_LOCATION](../../../extensibility/debugger/reference/bp-location.md)
[IDebugProgram2](../../../extensibility/debugger/reference/idebugprogram2.md)
[IDebugThread2](../../../extensibility/debugger/reference/idebugthread2.md)
[BP_CONDITION](../../../extensibility/debugger/reference/bp-condition.md)
[BP_PASSCOUNT](../../../extensibility/debugger/reference/bp-passcount.md)
[BP_FLAGS](../../../extensibility/debugger/reference/bp-flags.md)
[BP_REQUEST_INFO2](../../../extensibility/debugger/reference/bp-request-info2.md)
Contains the information required to implement a breakpoint.

## Syntax

```cpp
typedef struct _BP_REQUEST_INFO {
BPREQI_FIELDS dwFields;
GUID guidLanguage;
BP_LOCATION bpLocation;
IDebugProgram2* pProgram;
BSTR bstrProgramName;
IDebugThread2* pThread;
BSTR bstrThreadName;
BP_CONDITION bpCondition;
BP_PASSCOUNT bpPassCount;
BP_FLAGS dwFlags;
} BP_REQUEST_INFO;
```

```csharp
public struct BP_REQUEST_INFO {
public uint dwFields;
public Guid guidLanguage;
public BP_LOCATION bpLocation;
public IDebugProgram2 pProgram;
public string bstrProgramName;
public IDebugThread2 pThread;
public string bstrThreadName;
public BP_CONDITION bpCondition;
public BP_PASSCOUNT bpPassCount;
public uint dwFlags;
};
```

## Members
`dwFields`
A combination of flags from the [BPREQI_FIELDS](../../../extensibility/debugger/reference/bpreqi-fields.md) enumeration that specifies which fields are filled out.

`guidLanguage`
The language GUID.

`bpLocation`
The [BP_LOCATION](../../../extensibility/debugger/reference/bp-location.md) structure that specifies the type of the breakpoint location.

`pProgram`
The [IDebugProgram2](../../../extensibility/debugger/reference/idebugprogram2.md) object that represents the application in which the breakpoint occurs.

`bstrProgramName`
The name of the application in which the breakpoint occurs.

`pThread`
The [IDebugThread2](../../../extensibility/debugger/reference/idebugthread2.md) object that represents the thread in which the breakpoint occurs.

`bstrThreadName`
The name of the thread in which the breakpoint occurs.

`bpCondition`
The [BP_CONDITION](../../../extensibility/debugger/reference/bp-condition.md) structure that describes the conditions under which the breakpoint will fire.

`bpPassCount`
The [BP_PASSCOUNT](../../../extensibility/debugger/reference/bp-passcount.md) structure that contains the pass count information of the breakpoint.

`dwFlags`
A combination of flags from the [BP_FLAGS](../../../extensibility/debugger/reference/bp-flags.md) enumeration that specifies the flags for the requested breakpoint.

## Remarks
This structure is returned by the [GetRequestInfo](../../../extensibility/debugger/reference/idebugbreakpointrequest2-getrequestinfo.md) method.

If you need to obtain the debug engine vendor GUID, the breakpoint constraint or the tracepoint, see the [BP_REQUEST_INFO2](../../../extensibility/debugger/reference/bp-request-info2.md) structure.

## Requirements
Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

## See Also
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
[GetRequestInfo](../../../extensibility/debugger/reference/idebugbreakpointrequest2-getrequestinfo.md)
[BPREQI_FIELDS](../../../extensibility/debugger/reference/bpreqi-fields.md)
[BP_LOCATION](../../../extensibility/debugger/reference/bp-location.md)
[IDebugProgram2](../../../extensibility/debugger/reference/idebugprogram2.md)
[IDebugThread2](../../../extensibility/debugger/reference/idebugthread2.md)
[BP_CONDITION](../../../extensibility/debugger/reference/bp-condition.md)
[BP_PASSCOUNT](../../../extensibility/debugger/reference/bp-passcount.md)
[BP_FLAGS](../../../extensibility/debugger/reference/bp-flags.md)
[BP_REQUEST_INFO2](../../../extensibility/debugger/reference/bp-request-info2.md)