If I am not mistaken, you will need to use the winsock API --Ws2.dll. I have not used SharpPCap, but it probably does all of the platform invoke and marshalling of with winsock library for you (this is just an educated assumption), since it is open source, you could grab the code and see how they do the PInvoke (that would save you time if you do not need all of the SharpPCap functionality). Otherwise, you will need to spend some time on MSDN reading the WinSock API documentation. Also, I found a few links for you:
http://www.codeproject.com/KB/IP/packetfilteringnet.aspx
http://blogs.msdn.com/b/mzammuto/archive/2005/12/16/504868.aspx
I hope this helps,
If you need any further help in implementing winsock let me know, but this should point you in the right direction.
P.S. In .net, the System.Net and System.Net.Sockets namespaces encapsulate most of the functionality of Ws2.dll. I doubt that it has enough to implement something as low-level as an LSP but it is worth a shot.