# AtsExportedValueInfo

- Kind: `class`
- Package: [Aspire.TypeSystem](/reference/api/csharp/aspire.typesystem.md)
- Version: `13.4.0`
- Namespace: `Aspire.TypeSystem`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/a3766e994fd2cba86c8ac60b8a80268cab7e6383/src/Aspire.TypeSystem/AtsExportedValueInfo.cs)

Represents an immutable exported ATS value discovered from `[AspireValue]`.

## Definition

```csharp
namespace Aspire.TypeSystem;

public sealed class AtsExportedValueInfo
{
    // ...
}
```

## Constructors

- [AtsExportedValueInfo](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/constructors.md#constructor)

## Properties

- [Description](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/properties.md#description) : `string?` `get; init` -- Gets an optional XML documentation summary for the exported value.
- [Documentation](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/properties.md#documentation) : [AtsDocumentationInfo?](/reference/api/csharp/aspire.typesystem/atsdocumentationinfo.md) `get; init` -- Gets XML documentation captured for the exported value.
- [OwningAssemblyName](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/properties.md#owningassemblyname) : `string` `get; init` -- Gets the name of the assembly that exported this value.
- [PathSegments](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/properties.md#pathsegments) : `IReadOnlyList<string>` `get; init` -- Gets the full path of the exported value in generated guest SDKs.
- [Type](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/properties.md#type) : [AtsTypeRef](/reference/api/csharp/aspire.typesystem/atstyperef.md) `get; init` -- Gets the ATS type of the exported value.
- [Value](/reference/api/csharp/aspire.typesystem/atsexportedvalueinfo/properties.md#value) : `JsonNode?` `get; init` -- Gets the snapped JSON value emitted into guest SDKs.
