Microsoft.AspNetCore.SignalR.Hubs.HubMethodNameAttribute.HubMethodNameAttribute C# (CSharp) Метод

HubMethodNameAttribute() публичный Метод

public HubMethodNameAttribute ( string methodName ) : System
methodName string
Результат System
        public HubMethodNameAttribute(string methodName)
        {
            if (String.IsNullOrEmpty(methodName))
            {
                throw new ArgumentNullException("methodName");
            }
            MethodName = methodName;
        }
HubMethodNameAttribute