Skip to content

Instantly share code, notes, and snippets.

@crmckenzie
Created November 1, 2012 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crmckenzie/3994421 to your computer and use it in GitHub Desktop.
Save crmckenzie/3994421 to your computer and use it in GitHub Desktop.
Consuming global ObservableDbProvider events
Hub.ConnectionOpening += (sender, args) =>
{
// your code here
};
Hub.ConnectionClosing += (sender, args) =>
{
// your code here
};
Hub.CommandExecuting += (sender, args) =>
{
// your code here
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment