Skip to content

Instantly share code, notes, and snippets.

@msarchet
Created December 12, 2012 17:19
Show Gist options
  • Save msarchet/4269727 to your computer and use it in GitHub Desktop.
Save msarchet/4269727 to your computer and use it in GitHub Desktop.
Functioning Array Call
$.connection.hub.start().done(function() {
$.connection.myHub.server.test(['1', '2', '3']);
});
public MyHub : Hub
{
public void Test(String[] strings)
{
Console.WriteLine(string.Count());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment