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()
{
}
I tried this but no success.
InvocationDescriptor invocation = new InvocationDescriptor();
invocation.Identifier = Guid.Parse(_clientId);
invocation.MethodName = "CallServer";
on the server:
public async Task CallServer()
{
}