Esempio n. 1
0
 public PostItem(BoardType board)
 {
     this.posttype   = board.type;
     this.board_name = board.name;
 }
Esempio n. 2
0
 protected void NewBoard(BoardType.PostType type, string name, Uri baseUri, string href)
 {
     boards.Add(new BoardType(type, name, new Uri(baseUri, href).AbsoluteUri));
 }
Esempio n. 3
0
 public PostItem(BoardType.PostType postType, string board_name)
 {
     this.posttype   = postType;
     this.board_name = board_name;
 }