Microsoft.AspNetCore.SignalR.Hubs.ReflectedMethodDescriptorProvider.GetMethods C# (CSharp) 메소드

GetMethods() 공개 메소드

public GetMethods ( HubDescriptor hub ) : IEnumerable
hub HubDescriptor
리턴 IEnumerable
        public IEnumerable<MethodDescriptor> GetMethods(HubDescriptor hub)
        {
            return FetchMethodsFor(hub)
                .SelectMany(kv => kv.Value)
                .ToList();
        }