We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.NET 5 added a SocketsHttpHandler.PlaintextStreamFilter Property. This allows user code to inspect the plaintext HTTP protocol traffic before it's written to the network.
SocketsHttpHandler.PlaintextStreamFilter
Per dotnet/runtime#37915 (comment), https://github.com/wfurt/PcapStream/blob/main/src/PcapStream/PcapStream.cs is a project that writes Stream data to a file in the pcap format. This allows it to be imported into Wireshark and viewed.
Stream
We could do something similar as a workaround for dotnet/runtime#37915 not (yet) being implemented:
MySqlDataSource
PcapStream
The text was updated successfully, but these errors were encountered:
No branches or pull requests
.NET 5 added a
SocketsHttpHandler.PlaintextStreamFilter
Property. This allows user code to inspect the plaintext HTTP protocol traffic before it's written to the network.Per dotnet/runtime#37915 (comment), https://github.com/wfurt/PcapStream/blob/main/src/PcapStream/PcapStream.cs is a project that writes
Stream
data to a file in the pcap format. This allows it to be imported into Wireshark and viewed.We could do something similar as a workaround for dotnet/runtime#37915 not (yet) being implemented:
MySqlDataSource
property for a plaintext stream filterPcapStream
to log the dataThe text was updated successfully, but these errors were encountered: