RocketWelder.SDK.Types 1.10.0

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package RocketWelder.SDK.Types --version 1.10.0
                    
NuGet\Install-Package RocketWelder.SDK.Types -Version 1.10.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RocketWelder.SDK.Types" Version="1.10.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RocketWelder.SDK.Types" Version="1.10.0" />
                    
Directory.Packages.props
<PackageReference Include="RocketWelder.SDK.Types" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add RocketWelder.SDK.Types --version 1.10.0
                    
#r "nuget: RocketWelder.SDK.Types, 1.10.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package RocketWelder.SDK.Types@1.10.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=RocketWelder.SDK.Types&version=1.10.0
                    
Install as a Cake Addin
#tool nuget:?package=RocketWelder.SDK.Types&version=1.10.0
                    
Install as a Cake Tool

RocketWelder.SDK.Types

Value types and abstractions for the RocketWelder SDK ecosystem.

Purpose

This package contains lightweight, dependency-minimal types that are shared across:

  • RocketWelder.SDK - Full SDK with video streaming capabilities
  • RocketWelder.SDK.Blazor - Blazor components for rendering
  • ModelingEvolution.RocketWelder.Contracts - Event/command contracts

Types

SessionStreamId

Strongly-typed identifier for streaming sessions.

// Create new
var id = SessionStreamId.New();

// From existing Guid
var id = SessionStreamId.From(existingGuid);

// Parse from string (format: ps-{guid})
var id = SessionStreamId.Parse("ps-a1b2c3d4-e5f6-7890-abcd-ef1234567890");

// Implicit conversion to Guid
Guid guid = id;

// Implicit conversion to string
string s = id; // "ps-a1b2c3d4-..."

VideoRecordingIdentifier

Strongly-typed identifier for video recordings.

// Create new
var id = VideoRecordingIdentifier.New();

// From existing Guid
var id = VideoRecordingIdentifier.From(existingGuid);

// Parse from string (format: rec-{guid})
var id = VideoRecordingIdentifier.Parse("rec-a1b2c3d4-e5f6-7890-abcd-ef1234567890");

Design Principles

  • Minimal dependencies: Only ModelingEvolution.JsonParsableConverter for JSON serialization
  • No ASP.NET Core references: Safe for use in Blazor WASM projects
  • IParsable<T> support: Works with model binding and JSON serialization
  • Immutable: All types are readonly record struct

License

MIT

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on RocketWelder.SDK.Types:

Package Downloads
RocketWelder.SDK

High-performance video streaming client library for RocketWelder services with zero-copy shared memory support

ModelingEvolution.AppEnvironment

Application environment abstraction providing hostname and environment information

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.10.1-preview.db834ae 46 4/15/2026
1.10.1-preview.d66a018 52 4/15/2026
1.10.1-preview.d0625cc 39 4/15/2026
1.10.1-preview.695599e 51 4/15/2026
1.10.1-preview.501e243 41 4/15/2026
1.10.1-preview.1f9b0ca 47 4/15/2026
1.10.1-preview.1eeba3e 37 4/15/2026
1.10.1-preview.00c6c6f 43 4/15/2026
1.10.0 120 3/18/2026
1.9.1 162 3/16/2026
1.9.0 145 3/16/2026
1.8.0 108 3/3/2026
1.7.0 209 2/25/2026
1.6.0 120 2/24/2026
1.5.4 113 2/23/2026
1.5.3 118 2/23/2026
1.5.2 117 2/22/2026
1.5.1 119 2/22/2026
1.5.0 104 2/22/2026
1.4.4 117 2/21/2026
Loading failed