# ManifestPublishingCallbackAnnotation Properties

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [ManifestPublishingCallbackAnnotation](/reference/api/csharp/aspire.hosting/manifestpublishingcallbackannotation.md)
- Kind: `Properties`
- Members: `2`

Represents an annotation that provides a callback to be executed during manifest publishing.

## Callback

- Name: `Callback`
- Modifiers: `nullable` `get`
- Returns: `Func<ManifestPublishingContext, Task>`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/a3766e994fd2cba86c8ac60b8a80268cab7e6383/src/Aspire.Hosting/ApplicationModel/ManifestPublishingCallbackAnnotation.cs#L41)

Gets the callback action for publishing the manifest.

```csharp
public Func<ManifestPublishingContext, Task>? Callback { get; }
```

## Ignore

- Name: `Ignore`
- Modifiers: `static` `get`
- Returns: [ManifestPublishingCallbackAnnotation](/reference/api/csharp/aspire.hosting/manifestpublishingcallbackannotation.md)
- Source: [GitHub](https://github.com/microsoft/aspire/blob/a3766e994fd2cba86c8ac60b8a80268cab7e6383/src/Aspire.Hosting/ApplicationModel/ManifestPublishingCallbackAnnotation.cs#L47)

Represents a `null` -based callback annotation for manifest publishing used in scenarios where it's ignored.

```csharp
public static ManifestPublishingCallbackAnnotation Ignore { get; }
```
