Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public virtual void Join(int userId)
  2. {
  3. using (var context = new HubConnectionContext(this, RoomId, userId))
  4. {
  5. T workflow = GetWorkflow(context);
  6. workflow.OnUserJoin();
  7. }
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement