Microsoft.AspNetCore.SignalR.Hubs.ReflectedMethodDescriptorProvider.GetMethodAttributeName C# (CSharp) Method

GetMethodAttributeName() private static method

private static GetMethodAttributeName ( MethodInfo method ) : string
method System.Reflection.MethodInfo
return string
        private static string GetMethodAttributeName(MethodInfo method)
        {
            return ReflectionHelper.GetAttributeValue<HubMethodNameAttribute, string>(method, a => a.MethodName);
        }
    }