# AtsParameterInfo

- 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/AtsCapabilityInfo.cs)

Represents a parameter in an ATS capability.

## Definition

```csharp
namespace Aspire.TypeSystem;

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

## Constructors

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

## Properties

- [CallbackParameters](/reference/api/csharp/aspire.typesystem/atsparameterinfo/properties.md#callbackparameters) : [IReadOnlyList<AtsCallbackParameterInfo>](/reference/api/csharp/aspire.typesystem/atscallbackparameterinfo.md) `get; init` -- Gets or sets the parameters of the callback delegate. Only populated when [AtsParameterInfo.IsCallback](/reference/api/csharp/aspire.typesystem/atsparameterinfo/properties.md#iscallback) is true.
- [CallbackReturnType](/reference/api/csharp/aspire.typesystem/atsparameterinfo/properties.md#callbackreturntype) : [AtsTypeRef?](/reference/api/csharp/aspire.typesystem/atstyperef.md) `get; init` -- Gets or sets the return type for the callback delegate. Only populated when [AtsParameterInfo.IsCallback](/reference/api/csharp/aspire.typesystem/atsparameterinfo/properties.md#iscallback) is true.
- [DefaultValue](/reference/api/csharp/aspire.typesystem/atsparameterinfo/properties.md#defaultvalue) : `object?` `get; init` -- Gets or sets the default value for optional parameters.
- [Documentation](/reference/api/csharp/aspire.typesystem/atsparameterinfo/properties.md#documentation) : [AtsDocumentationInfo?](/reference/api/csharp/aspire.typesystem/atsdocumentationinfo.md) `get; init` -- Gets or sets the XML documentation captured for this parameter.
- [IsCallback](/reference/api/csharp/aspire.typesystem/atsparameterinfo/properties.md#iscallback) : `bool` `get; init` -- Gets or sets whether this parameter is a callback delegate. Callbacks are inferred from delegate types (Func, Action, custom delegates).
- [IsNullable](/reference/api/csharp/aspire.typesystem/atsparameterinfo/properties.md#isnullable) : `bool` `get; init` -- Gets or sets whether this parameter is nullable.
- [IsOptional](/reference/api/csharp/aspire.typesystem/atsparameterinfo/properties.md#isoptional) : `bool` `get; init` -- Gets or sets whether this parameter is optional.
- [Name](/reference/api/csharp/aspire.typesystem/atsparameterinfo/properties.md#name) : `string` `get; init` -- Gets or sets the parameter name.
- [Type](/reference/api/csharp/aspire.typesystem/atsparameterinfo/properties.md#type) : [AtsTypeRef?](/reference/api/csharp/aspire.typesystem/atstyperef.md) `get; init` -- Gets or sets the type reference with full type metadata.
