9 references to HandshakeResponseMessage
Microsoft.AspNetCore.SignalR.Common (2)
Protocol\HandshakeProtocol.cs (1)
160
responseMessage = new
HandshakeResponseMessage
(error);
Protocol\HandshakeResponseMessage.cs (1)
14
public static readonly HandshakeResponseMessage Empty = new
HandshakeResponseMessage
(error: null);
Microsoft.AspNetCore.SignalR.Core (7)
HubConnectionContext.cs (7)
631
await WriteHandshakeResponseAsync(new
HandshakeResponseMessage
("Handshake was canceled."));
658
await WriteHandshakeResponseAsync(new
HandshakeResponseMessage
($"The protocol '{handshakeRequestMessage.Protocol}' is not supported."));
665
await WriteHandshakeResponseAsync(new
HandshakeResponseMessage
(
679
await WriteHandshakeResponseAsync(new
HandshakeResponseMessage
($"Cannot use the '{Protocol.Name}' protocol on the current transport. The transport does not support '{Protocol.TransferFormat}' transfer format."));
724
await WriteHandshakeResponseAsync(new
HandshakeResponseMessage
("Handshake was canceled."));
747
await WriteHandshakeResponseAsync(new
HandshakeResponseMessage
("Handshake was canceled."));
754
await WriteHandshakeResponseAsync(new
HandshakeResponseMessage
(errorMessage));