Feature: .NET SignalR Client (ManagedCode.Storage.Client.SignalR)

Purpose

Typed .NET SignalR client (StorageSignalRClient) for StorageHub: streaming upload/download helpers plus progress reporting and reconnection support.

Main Flows

sequenceDiagram
  participant App as App
  participant Client as StorageSignalRClient
  participant Hub as StorageHub
  participant S as IStorage
  App->>Client: UploadAsync(stream, descriptor)
  Client->>Hub: SignalR stream upload
  Hub->>S: UploadAsync(...)
  S-->>Hub: Result
  Hub-->>Client: status/progress

Components

Current Behavior

Tests