Microsoft.AspNetCore.SignalR.Hubs.HubManagerExtensions.GetHubMethods C# (CSharp) Method

GetHubMethods() public static method

public static GetHubMethods ( this hubManager, string hubName ) : IEnumerable
hubManager this
hubName string
return IEnumerable
        public static IEnumerable<MethodDescriptor> GetHubMethods(this IHubManager hubManager, string hubName)
        {
            if (hubManager == null)
            {
                throw new ArgumentNullException("hubManager");
            }

            return hubManager.GetHubMethods(hubName, m => true);
        }
    }