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