SignalRCore Client Command Line Application for Windows, OSX and Linux
SignalRCore Client CommandsASP.NET Core SignalR is an open-source library that simplifies adding real-time web functionality to apps. Real-time web functionality enables server-side code to push content to clients instantly.
Apps that require high frequency updates from the server. Examples are gaming, social networks, voting, auction, maps, and GPS apps.
Client component supports Invocations, Stream Invocations, Completion Result, HeartBeat, Handle Errors, Hubs...
Siimple but very powerful.
SignalRCore Client Win32
SignalRCore Client Win32
SignalRCore Client Win64
SignalRCore Client Win64
SignalRCore Client OSX64
SignalRCore Client OSX64
SignalRCore Client OSXARM64
SignalRCore Client OSXARM64
SignalRCore Client Linux64
SignalRCore Client Linux64
How Open a new SignalRCore ConnectionExample: open a websocket connection to SignalRCore server with "/ChatHub" chat
|
How call an invocationExample: invoke "SendMessage" method
|
How call Invoke StreamExample: call method "Counter" and pass arguments 10, 50
|
Example: close connection
|
TCP ServerAll console applications can run an internal TCP Server that allows to send and receive commands as if were written directly on the console application. Just start the application with the command -server and a new server will be started listening on port 8080. Example: if you want enable the server on WebSocket client, start the console application as follows:
Find below the full TCP Server parameters:
If the server is enabled, a client connected to this server can send any JSON message and will receive any response as if was written directly from console application. Example: if you want enable server on IP 192.168.1.1 and Port 5412
|