Skip to content

Instantly share code, notes, and snippets.

@wklm
Created November 27, 2017 23:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wklm/04351f6cb04c8f4e5494c0f69c2af921 to your computer and use it in GitHub Desktop.
Save wklm/04351f6cb04c8f4e5494c0f69c2af921 to your computer and use it in GitHub Desktop.
module Socket
open Microsoft.AspNetCore.SignalR
open Microsoft.AspNetCore.SignalR.Client
open Microsoft.AspNetCore.Sockets
let x = HubConnectionBuilder()
.WithUrl("http://socket-stage.bittrex.com/signalr")
.WithTransport(TransportType.ServerSentEvents)
.WithMessageHandler(z)
.Build()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment