Microsoft.AspNetCore.SignalR.Hubs.HubMethodNameAttribute.HubMethodNameAttribute C# (CSharp) Method

HubMethodNameAttribute() public method

public HubMethodNameAttribute ( string methodName ) : System
methodName string
return System
        public HubMethodNameAttribute(string methodName)
        {
            if (String.IsNullOrEmpty(methodName))
            {
                throw new ArgumentNullException("methodName");
            }
            MethodName = methodName;
        }
HubMethodNameAttribute