https://docs.microsoft.com/en-us/aspnet/core/signalr/hubs?view=aspnetcore-3.1#create-and-use-hubs says "Create a hub by declaring a class that inherits from Hub, and add public methods to it. Clients can call methods that are defined as public.".
I would like to have public methods in my hub (callable from other places in the server), that are not exposed to the clients. Surely there must exist an attribute to make public methods not callable? Or is this really not supported?
Thanks.