# ResourcePropertySnapshot Properties

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [ResourcePropertySnapshot](/reference/api/csharp/aspire.hosting/resourcepropertysnapshot.md)
- Kind: `Properties`
- Members: `3`

A snapshot of the resource property.

## IsSensitive

- Name: `IsSensitive`
- Modifiers: `get; init`
- Returns: `bool`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/CustomResourceSnapshot.cs)

Whether this property is considered sensitive or not.

```csharp
public bool IsSensitive { get; init; }
```

## Remarks

Sensitive properties are masked when displayed in UI and require an explicit user action to reveal.

## Name

- Name: `Name`
- Modifiers: `get; init`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/CustomResourceSnapshot.cs)

The name of the property.

```csharp
public string Name { get; init; }
```

## Value

- Name: `Value`
- Modifiers: `nullable` `get; init`
- Returns: `object?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/CustomResourceSnapshot.cs)

The value of the property.

```csharp
public object? Value { get; init; }
```
