Search Results

0
votes

Factory Class - Should i populate my object with data here?

If you're sure you're going to be using all of the data you load from the SQLDataReader, then yes, you could do it at construction time in the factory. However if the data set has many fields, whi …
0
votes

Extend No-Constructor class

Hiding all public constructors is a technique used to prevent subclassing and force developers to use the class as intended. It may be the implementor wants you to use an Adapter or Facade or even …
0
votes

Code to enable/disable internet connectivity

What you are trying to do falls in the realm of 802.1x. Read up on that technology and the possibilities of enabling outbound routes once a user has authenticated. …
-1
votes

Packet capture to database?

libpcap, wireshark round robin files Look around, play with wireshark, look at how it achieves similar results to yours. …