In SignalR there is public property defined in the HubConnectionContext as such:
public dynamic All { get; set; }
This enables users to cal
You can use reflection to achieve this:
Type allType = All.GetType(); // GetType() may return null in relation to dynamics objects if (allType != null) { MethodInfo methodInfo = allType.GetMethod(methodToCall); methodInfo.Invoke(All, null); }