Skip to content

Commit 07e07ee

Browse files
authored
For reading from a capture, use Capture() instead of StartCapture() (#430)
1 parent eddc0e0 commit 07e07ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ See the [Examples](https://github.com/chmorgan/sharppcap/tree/master/Examples) f
7171
using var device = new CaptureFileReaderDevice("filename.pcap");
7272
device.Open();
7373
device.OnPacketArrival += Device_OnPacketArrival;
74-
device.StartCapture();
74+
device.Capture();
7575
```
7676

7777
## Writing to a capture file

0 commit comments

Comments
 (0)