I\'m currently trying to modify some HttpWebRequest functions, but I can\'t do it through inheritance because HttpWebRequest has no public constructors (besides the deserial
Unless you can trick the serialization constructor to do your bidding, then no, there is no way.
The constructors of that class are internal, so you have no way of calling them.