Skip to content

Commit 17b9266

Browse files
authored
Merge pull request #7570 from TimShererWithAquent/us1767860e
1767860 Add descriptions for SEO. (5 of several)
2 parents 2c22aa2 + 733e108 commit 17b9266

20 files changed

+40
-0
lines changed

docs/extensibility/debugger/event-sources-visual-studio-sdk.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Event Sources (Visual Studio SDK) | Microsoft Docs
3+
description: "Learn about the two sources of events in Visual Studio debugging: the debug engine and the Session Debug Manager."
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/exception-handling-visual-studio-sdk.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Exception Handling (Visual Studio SDK) | Microsoft Docs
3+
description: Learn about the process that occurs when exceptions are thrown. This article describes all the steps involved.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/execution-control-and-state-evaluation.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Execution Control and State Evaluation | Microsoft Docs
3+
description: Learn how Visual Studio debugging bases its execution control on events sent between debugger components.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/expression-evaluation-context.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Expression Evaluation Context | Microsoft Docs
3+
description: Learn about expression evaluation context, which represents a context for expression evaluation and exists when a program has stopped at a breakpoint.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/expression-evaluation-in-break-mode.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Expression Evaluation in Break Mode | Microsoft Docs
3+
description: Learn about the process that occurs when the debugger is in break mode and must conduct expression evaluation.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/expression-evaluation-visual-studio-debugging-sdk.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Expression Evaluation (Visual Studio Debugging SDK) | Microsoft Docs
3+
description: During break mode, the IDE evaluates expressions involving program variables. Learn how the debug engine parses and evaluates an expression.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/expression-evaluator-architecture.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Expression Evaluator Architecture | Microsoft Docs
3+
description: Learn about integrating a proprietary language into the Visual Studio debug package, including expression evaluator and symbol provider/binder interfaces.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/expression-evaluator-implementation-strategy.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Expression Evaluator Implementation Strategy | Microsoft Docs
3+
description: Learn about a strategy for creating an expression evaluator by first implementing code to display local variables in the Locals window.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/expression-evaluator.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Expression Evaluator | Microsoft Docs
3+
description: Learn about expression evaluators, which examine the syntax of a language to parse and evaluate variables and expressions at runtime in break mode.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/getting-a-port.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Getting a Port | Microsoft Docs
3+
description: Learn how Visual Studio supplies a port to the debug engine to register program nodes with the port and to satisfy requests for process information.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/getting-local-properties.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Getting Local Properties | Microsoft Docs
3+
description: Learn how Visual Studio uses EnumChildren to get local properties with these examples for managed and unmanaged code.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/getting-local-values.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Getting Local Values | Microsoft Docs
3+
description: Learn how Visual Studio gets the value of a local variable by using GetPropertyInfo for managed and unmanaged code.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/getting-started-with-debugger-extensibility.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Getting Started with Debugger Extensibility | Microsoft Docs
3+
description: Get started creating and customizing debugger components used to debug programs from within the Visual Studio environment.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/hitting-a-breakpoint.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Hitting a Breakpoint | Microsoft Docs
3+
description: This article describes the process that takes place when the debug engine hits a breakpoint while running or stepping.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/how-to-debug-a-custom-debug-engine.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: 'How To: Debug a Custom Debug Engine | Microsoft Docs'
3+
description: Learn about the steps that allow you to use Visual Studio to debug your custom debug engine or a custom project type.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: how-to
57
helpviewer_keywords:

docs/extensibility/debugger/implementing-a-port-supplier.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Implementing a Port Supplier | Microsoft Docs
3+
description: Learn about implementing a port supplier, which is necessary when debugging to a non-DCOM machine or when a new device requires support.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/implementing-an-expression-evaluator.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Implementing an Expression Evaluator | Microsoft Docs
3+
description: Learn about evaluating an expression, which involves the debug engine, the symbol provider, the binder object, and the expression evaluator.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/implementing-and-registering-a-port-supplier.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Implementing and Registering a Port Supplier | Microsoft Docs
3+
description: Learn how to implement and register a port supplier, which tracks and supplies ports, which manage processes.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/implementing-getmethodproperty.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Implementing GetMethodProperty | Microsoft Docs
3+
description: Learn how Visual Studio obtains information about the current method on the stack frame by using the GetDebugProperty of the debug engine.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

docs/extensibility/debugger/implementing-type-visualizers-and-custom-viewers.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Implementing Type Visualizers and Custom Viewers | Microsoft Docs
3+
description: Learn about implementing type visualizers and custom viewers, which let a user view data in a way that is more meaningful than a dump of numbers.
4+
ms.custom: SEO-VS-2020
35
ms.date: 11/04/2016
46
ms.topic: conceptual
57
helpviewer_keywords:

0 commit comments

Comments
 (0)