/// <summary>
 /// Instantiates a new instance of the <see cref="HubInvocationContext"/> class.
 /// </summary>
 /// <param name="context">Context for the active Hub connection and caller.</param>
 /// <param name="hubMethodName">The name of the Hub method being invoked.</param>
 /// <param name="hubMethodArguments">The arguments provided by the client.</param>
 public HubInvocationContext(HubCallerContext context, string hubMethodName, object[] hubMethodArguments)
 {
     HubMethodName      = hubMethodName;
     HubMethodArguments = hubMethodArguments;
     Context            = context;
 }