You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+49-14Lines changed: 49 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,26 @@
1
1
# SignalR-Web-Client
2
-
ASP.Net Core Signal R JavaScript based Web Client
2
+
ASP.Net Core Signal-R Web Client is based on JavaScript
3
3
4
4
5
-
This is a UI based ASP.Net Core SignalR client. It is used to test SignalR Hub. It is a debugging tool to test ASP.Net Core SignalR hubs. Using this tool, we can send the data to the SignalR hub and receive the response emit from the Signal R Hub. This tool is design for dotnet developer to make their life easier when they work with SignalR.
5
+
This is a UI based SignalR client. It is a debugging tool to test ASP.Net Core SignalR hubs. Using this tool, we can send the data to the SignalR hub and receive the response emit from the SignalR Hub. This tool is design for dotnet developer to make their life easier when they work with SignalR.
2. Once click on Connect button, it will make connection with server. Once the connection is established, if any data is broadcast from the Hub(ex. OneHub) to all the client. Then, it will be displayed in Response payload textbox.
31
48
32
-
3. If we want to test any Hub method. For exmaple
49
+
3. If we want to call any Hub method. For exmaple TesCall method
33
50
```csharp
34
51
publicclassOneHub : Hub
35
52
{
@@ -40,22 +57,35 @@ public class OneHub : Hub
40
57
}
41
58
}
42
59
```
43
-
So, in the tool, we have to pass the parameter.
60
+
In the tool, we have to pass the parameter.
44
61
45
-
Server Method: TestCall
46
-
Request Payload: It can take multiple parameters. In our example, TestCall method only taking one parameter of type string.
47
-
ex. Arg: abc
48
-
Type: Text
62
+
#### Server Method:
63
+
TestCall
49
64
50
-
Currently Data Type supports: Text, Number & JSON
65
+
#### Request Payload:
66
+
It can take multiple parameters. In our example, TestCall method only taking one parameter of type string.
0 commit comments