Example #1
0
 public _4chan()
 {
     wc = new WebClient();
     Interface = new Interface();
     Images = new Images(wc, Interface);
     Resto = new Resto(Interface, Images, wc, Board);
     wc.Proxy = null;
 }
Example #2
0
 public Resto(Interface Interface, Images Images, WebClient wc, String Board)
 {
     this.Interface = Interface;
     this.Images = Images;
     this.Board = Board;
     this.wc = wc;
     RestoList = new List<String>();
 }
Example #3
0
 public Images(WebClient wc, Interface Interface)
 {
     this.wc = wc;
     this.Interface = Interface;
 }