# SolrResource Constructors

- Package: [CommunityToolkit.Aspire.Hosting.Solr](/reference/api/csharp/communitytoolkit.aspire.hosting.solr.md)
- Type: [SolrResource](/reference/api/csharp/communitytoolkit.aspire.hosting.solr/solrresource.md)
- Kind: `Constructors`
- Members: `1`

Represents an Apache Solr container resource.

## SolrResource(string, string)

- Name: `Constructor(string, string)`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d9dc6fc02412d7398c5722840513d99965a6e98f/src/CommunityToolkit.Aspire.Hosting.Solr/SolrResource.cs#L13-L22)

Represents an Apache Solr container resource.

```csharp
public class SolrResource
{
    public SolrResource(
        string name,
        string coreName)
    {
        // ...
    }
}
```

## Parameters

- `name` (`string`)
  The name of the resource.
- `coreName` (`string`)
  The name of the Solr core.
