# ContainerFileSystemCallbackHttpsCertificateContext

- Kind: `class`
- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Version: `13.3.0`
- Namespace: `Aspire.Hosting.ApplicationModel`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/ContainerFileSystemCallbackAnnotation.cs)

Represents the context for server authentication certificate files in a [ContainerFileSystemCallbackContext](/reference/api/csharp/aspire.hosting/containerfilesystemcallbackcontext.md).

## Definition

```csharp
namespace Aspire.Hosting.ApplicationModel;

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

## Constructors

- [ContainerFileSystemCallbackHttpsCertificateContext](/reference/api/csharp/aspire.hosting/containerfilesystemcallbackhttpscertificatecontext/constructors.md#constructor)

## Properties

- [CertificatePath](/reference/api/csharp/aspire.hosting/containerfilesystemcallbackhttpscertificatecontext/properties.md#certificatepath) : [ReferenceExpression](/reference/api/csharp/aspire.hosting/referenceexpression.md) `get; init` -- A reference expression that resolves to the path to the server authentication certificate file inside the container. Use GetValueAsync to resolve the path.
- [KeyPath](/reference/api/csharp/aspire.hosting/containerfilesystemcallbackhttpscertificatecontext/properties.md#keypath) : [ReferenceExpression](/reference/api/csharp/aspire.hosting/referenceexpression.md) `get; init` -- A reference expression that resolves to the path to the server authentication key file inside the container. Use GetValueAsync to resolve the path.
- [Password](/reference/api/csharp/aspire.hosting/containerfilesystemcallbackhttpscertificatecontext/properties.md#password) : `string?` `get; init` -- The password for the server authentication key inside the container or null if no password is required.
- [PfxPath](/reference/api/csharp/aspire.hosting/containerfilesystemcallbackhttpscertificatecontext/properties.md#pfxpath) : [ReferenceExpression](/reference/api/csharp/aspire.hosting/referenceexpression.md) `get; init` -- A reference expression that resolves to the path to the server authentication PFX file inside the container. Use GetValueAsync to resolve the path.
