---
layout: default-layout
title: struct IntermediateResultExtraInfo - Dynamsoft Core Module C++ Edition API Reference
description: API reference for the IntermediateResultExtraInfo struct in Dynamsoft Core C++ Edition, storing supplementary metadata (task name, section type, stage) for intermediate results.
keywords: intermediate result, c++
needAutoGenerateSidebar: true
---

# IntermediateResultExtraInfo

The `IntermediateResultExtraInfo` structure represents the extra information for generating an intermediate result unit.

## Definition

*Assembly:* DynamsoftCore

```cpp
typedef struct IntermediateResultExtraInfo
{
    const char* targetROIDefName;
    const char* taskName;
    bool isSectionLevelResult;
    SectionType sectionType;  
    char reserved[64];
}IntermediateResultExtraInfo;
```

## Attributes Summary

| Attribute                                             | Type                                |
| ----------------------------------------------------- | ----------------------------------- |
| [`targetROIDefName`](#targetroidefname)               | *const char\**                      |
| [`taskName`](#taskname)                               | *const char\**                      |
| [`isSectionLevelResult`](#issectionlevelresult)       | *bool*                              |
| [`sectionType`](#sectiontype)                         | *SectionType*                       |
| [`reserved`](#reserved)                               | *char[64]*                          |

### targetROIDefName

Specifies the name of the TargetROIDef object that generates the intermediate result.

```cpp
const char* targetROIDefName
```

### taskName

Specifies the name of the task that generates the intermediate result.

```cpp
const char* taskName
```

### isSectionLevelResult

Specifies whether the intermediate result is section-level result.

```cpp
bool isSectionLevelResult
```

### sectionType

Specifies the SectionType that generates the intermediate result.

```cpp
SectionType sectionType
```

**See Also**

[SectionType]({{ site.dcvb_cpp_api }}core/enum-section-type.html?src=cpp&&lang=cpp)

### reserved

Reserved for future use.

```cpp
char reserved[64]
```
