Created
November 27, 2017 23:36
-
-
Save wklm/04351f6cb04c8f4e5494c0f69c2af921 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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