Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 1.89 KB

ienumcodepaths2.md

File metadata and controls

53 lines (41 loc) · 1.89 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice
This interface represents a list of code paths.
IEnumCodePaths2
11/04/2016
reference
IEnumCodePaths2
IEnumCodePaths2 interface
maiak
maiak
mijacobs
debug-diagnostics

IEnumCodePaths2

This interface represents a list of code paths.

Syntax

IEnumCodePaths2 : IUnknown

Notes for Implementers

The debug engine (DE) implements this interface to represent a list of code paths.

Notes for Callers

Call EnumCodePaths to obtain this interface.

Methods in Vtable Order

The following table shows the methods of IEnumCodePaths2.

Method Description
Next Retrieves a specified number of code paths in an enumeration sequence.
Skip Skips a specified number of code paths in an enumeration sequence.
Reset Resets an enumeration sequence to the beginning.
Clone Creates an enumerator that contains the same enumeration state as the current enumerator.
GetCount Gets the number of code paths in an enumerator.

Remarks

A code path represents a branch point or function call in a program. A list of code paths represents the path through which the code execution has taken.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also