https://github.com/soenneker/soenneker.blazor.c15t
A Blazor interop library for C15T, the consent management platform
https://github.com/soenneker/soenneker.blazor.c15t
blazor blazorlibrary c15t consent csharp dotnet interop
Last synced: 6 days ago
JSON representation
A Blazor interop library for C15T, the consent management platform
- Host: GitHub
- URL: https://github.com/soenneker/soenneker.blazor.c15t
- Owner: soenneker
- License: mit
- Created: 2026-05-22T21:20:04.000Z (21 days ago)
- Default Branch: main
- Last Pushed: 2026-05-22T21:55:47.000Z (21 days ago)
- Last Synced: 2026-06-01T01:02:52.212Z (12 days ago)
- Topics: blazor, blazorlibrary, c15t, consent, csharp, dotnet, interop
- Language: CSS
- Homepage: https://soenneker.com
- Size: 123 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
[](https://www.nuget.org/packages/soenneker.blazor.c15t/)
# Soenneker.Blazor.C15t
### A minimal Blazor wrapper around c15t
## Installation
```bash
dotnet add package Soenneker.Blazor.C15t
```
## Usage
```csharp
services.AddC15t();
```
```razor
@Body
@code {
private readonly C15tOptions _options = new()
{
Mode = "hosted",
BackendUrl = "https://your-instance.c15t.dev",
ConsentCategories = ["necessary", "measurement", "marketing"]
};
}
```