You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For most reads, the desired length is known (4 bytes for packet header, or len bytes for packet content).
Consider using ReadAtLeast(Async) on newer frameworks to specify the desired amount to read. Note that this would need to be simulated in SocketByteHandler since Socket doesn't have an AtLeast API.
For most reads, the desired length is known (4 bytes for packet header, or len bytes for packet content).
Consider using
ReadAtLeast(Async)
on newer frameworks to specify the desired amount to read. Note that this would need to be simulated inSocketByteHandler
sinceSocket
doesn't have anAtLeast
API.MySqlConnector/src/MySqlConnector/Protocol/Serialization/StreamByteHandler.cs
Line 33 in 59bb840
The text was updated successfully, but these errors were encountered: