https://github.com/OpenShock/SDK.CSharp
OpenShock DotNet / CSharp SDK to integrate with an OpenShock backend easily
https://github.com/OpenShock/SDK.CSharp
Last synced: 4 months ago
JSON representation
OpenShock DotNet / CSharp SDK to integrate with an OpenShock backend easily
- Host: GitHub
- URL: https://github.com/OpenShock/SDK.CSharp
- Owner: OpenShock
- License: mit
- Created: 2024-01-17T10:07:02.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-11-15T16:00:00.000Z (7 months ago)
- Last Synced: 2026-01-27T13:52:15.904Z (5 months ago)
- Language: C#
- Size: 188 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-openshock - OpenShock SDK - C# SDK for building OpenShock integrations. (Libraries / C#)
README
# OpenShock .NET SDK
[](https://www.nuget.org/packages/OpenShock.SDK.CSharp/)
[](https://www.nuget.org/packages/OpenShock.SDK.CSharp/)
This is the official .NET / C# SDK for OpenShock. It provides a simple way to interact with the OpenShock API.
## Installation
You can install the SDK via NuGet. Run the following command in the Package Manager Console:
```
Install-Package OpenShock.SDK.CSharp
```
## Hub Extension
[](https://www.nuget.org/packages/OpenShock.SDK.CSharp.Hub/)
[](https://www.nuget.org/packages/OpenShock.SDK.CSharp.Hub/)
The SDK provides a hub extension that allows you to interact with the OpenShock API's realtime parts like the SignalR Websockets for user events.
This extension is available in the `OpenShock.SDK.CSharp.Hub` namespace.
```
Install-Package OpenShock.SDK.CSharp.Hub
```
## Live Extension
[](https://www.nuget.org/packages/OpenShock.SDK.CSharp.Live/)
[](https://www.nuget.org/packages/OpenShock.SDK.CSharp.Live/)
Provides extension that allows you to interact with the OpenShock API's realtime live control websocket.
This extension is available in the `OpenShock.SDK.CSharp.Live` namespace.
```
Install-Package OpenShock.SDK.CSharp.Live
```