Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Client results #106

Open
Th3Hunger opened this issue Jun 8, 2023 · 0 comments
Open

Client results #106

Th3Hunger opened this issue Jun 8, 2023 · 0 comments

Comments

@Th3Hunger
Copy link

How can the server request a result from a client? as shown below

https://learn.microsoft.com/en-us/aspnet/core/signalr/hubs?view=aspnetcore-7.0#client-results

Example in C# Client:

hubConnection.On("GetMessage", async () =>
{
   Console.WriteLine("Enter message:");
   var message = await Console.In.ReadLineAsync();
   return message;
});

How can I send results back to the server within an event?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant