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