websocket-manager icon indicating copy to clipboard operation
websocket-manager copied to clipboard

How to call server in c# client

Open helmishariff opened this issue 6 years ago • 0 comments

I tried this but no success.

InvocationDescriptor invocation = new InvocationDescriptor(); invocation.Identifier = Guid.Parse(_clientId); invocation.MethodName = "CallServer";

        await _connection.SendAsync(invocation);

on the server: public async Task CallServer() { }

helmishariff avatar May 30 '18 08:05 helmishariff