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

GetHubs() public static méthode

public static GetHubs ( this hubManager ) : IEnumerable
hubManager this
Résultat IEnumerable
        public static IEnumerable<HubDescriptor> GetHubs(this IHubManager hubManager)
        {
            if (hubManager == null)
            {
                throw new ArgumentNullException("hubManager");
            }

            return hubManager.GetHubs(d => true);
        }