Microsoft.AspNetCore.SignalR.Hubs.HubManagerExtensions.GetHubMethods C# (CSharp) Méthode

GetHubMethods() public static méthode

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

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