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

HubNameAttribute() public method

public HubNameAttribute ( string hubName ) : System
hubName string
return System
        public HubNameAttribute(string hubName)
        {
            if (String.IsNullOrEmpty(hubName))
            {
                throw new ArgumentNullException("hubName");
            }
            HubName = hubName;
        }
HubNameAttribute