Closed Henry00IS closed 6 years ago
Instead of writing:
await Connection.SendAsync(new InvocationDescriptor { MethodName = "SendMessage", Arguments = new object[] { Connection.ConnectionId, "Hello World" } });
You can now type (up to 16 arguments) with templates:
await Connection.SendAsync("SendMessage", Connection.ConnectionId, "Hello World!");
Conflicts have been resolved.
Instead of writing:
You can now type (up to 16 arguments) with templates: