> ## Documentation Index
> Fetch the complete documentation index at: https://dotnetdocs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# IDocEnricher

> Defines an enricher for conceptual documentation augmentation.

## Definition

**Assembly:** CloudNimble.DotNetDocs.Core.dll

**Namespace:** CloudNimble.DotNetDocs.Core

## Syntax

```csharp theme={"dark"}
CloudNimble.DotNetDocs.Core.IDocEnricher
```

## Summary

Defines an enricher for conceptual documentation augmentation.

## Remarks

Implementations of this interface can enhance documentation entities with additional content
from various sources such as conceptual files, AI services, or other data sources.

## Methods

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> EnrichAsync <Badge color="orange">Abstract</Badge>

Enriches a documentation entity with additional conceptual content.

#### Syntax

```csharp theme={"dark"}
System.Threading.Tasks.Task EnrichAsync(CloudNimble.DotNetDocs.Core.DocEntity entity)
```

#### Parameters

| Name     | Type                                    | Description                         |
| -------- | --------------------------------------- | ----------------------------------- |
| `entity` | `CloudNimble.DotNetDocs.Core.DocEntity` | The documentation entity to enrich. |

#### Returns

Type: `System.Threading.Tasks.Task`
A task representing the asynchronous enrichment operation.
