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

HubMethodNameAttribute() public méthode

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