We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9c2893 commit 7ce5d17Copy full SHA for 7ce5d17
README.md
@@ -71,7 +71,7 @@ See the [Examples](https://github.com/chmorgan/sharppcap/tree/master/Examples) f
71
```cs
72
void Device_OnPacketArrival(object s, PacketCapture e)
73
{
74
- Console.WriteLine(e.Packet);
+ Console.WriteLine(e.GetPacket());
75
}
76
77
using var device = LibPcapLiveDeviceList.Instance[0];
@@ -86,7 +86,7 @@ See the [Examples](https://github.com/chmorgan/sharppcap/tree/master/Examples) f
86
87
88
89
90
91
92
using var device = new CaptureFileReaderDevice("filename.pcap");
0 commit comments