2 implementations of Name
Microsoft.AspNetCore.Components.Server (1)
BlazorPack\BlazorPackHubProtocol.cs (1)
24public string Name => ProtocolName;
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
Protocol\JsonHubProtocol.cs (1)
74public string Name => ProtocolName;
7 references to Name
Microsoft.AspNetCore.SignalR.Core (7)
HubConnectionContext.cs (2)
606await WriteHandshakeResponseAsync(new HandshakeResponseMessage($"Cannot use the '{Protocol.Name}' protocol on the current transport. The transport does not support '{Protocol.TransferFormat}' transfer format.")); 641Log.HandshakeComplete(_logger, Protocol.Name);
HubOptionsSetup.cs (1)
39_defaultProtocols.Add(hubProtocol.Name);
Internal\DefaultHubProtocolResolver.cs (2)
26Log.RegisteredSignalRProtocol(_logger, protocol.Name, protocol.GetType()); 27_availableProtocols[protocol.Name] = protocol;
SerializedHubMessage.cs (2)
58if (!TryGetCachedUnsynchronized(protocol.Name, out var serialized)) 67SetCacheUnsynchronized(protocol.Name, serialized);