1 instantiation of HandshakeRequestMessage
Microsoft.AspNetCore.SignalR.Common (1)
Protocol\HandshakeProtocol.cs (1)
222requestMessage = new HandshakeRequestMessage(protocol, protocolVersion.Value);
7 references to HandshakeRequestMessage
Microsoft.AspNetCore.SignalR.Common (6)
Protocol\HandshakeProtocol.cs (5)
52/// Writes the serialized representation of a <see cref="HandshakeRequestMessage"/> to the specified writer. 56public static void WriteRequestMessage(HandshakeRequestMessage requestMessage, IBufferWriter<byte> output) 165/// Creates a new <see cref="HandshakeRequestMessage"/> from the specified serialized representation. 169/// <returns>A value that is <c>true</c> if the <see cref="HandshakeRequestMessage"/> was successfully parsed; otherwise, <c>false</c>.</returns> 170public static bool TryParseRequestMessage(ref ReadOnlySequence<byte> buffer, [NotNullWhen(true)] out HandshakeRequestMessage? requestMessage)
Protocol\HandshakeRequestMessage.cs (1)
12/// Initializes a new instance of the <see cref="HandshakeRequestMessage"/> class.
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionContext.cs (1)
574if (HandshakeProtocol.TryParseRequestMessage(ref segment, out var handshakeRequestMessage))