Esempio n. 1
0
 public Users.Show.Result Show(Int64 user_id, String screen_name)
 {
     var cm = new Users.Show.Command();
     cm.user_id = user_id;
     cm.screen_name = screen_name;
     return this.Show(cm);
 }
Esempio n. 2
0
 public Users.Show.Result Show(Int64 user_id, Boolean? include_entities)
 {
     var cm = new Users.Show.Command();
     cm.user_id = user_id;
     cm.include_entities = include_entities;
     return this.Show(cm);
 }
Esempio n. 3
0
 public Users.Show.Result Show(String screen_name, Boolean? include_entities)
 {
     var cm = new Users.Show.Command();
     cm.screen_name = screen_name;
     cm.include_entities = include_entities;
     return this.Show(cm);
 }
Esempio n. 4
0
 public Users.Show.Result[] Show(Users.Show.Command command)
 {
     return(_ApiEndpoints._Client.GetResult <Users.Show.Command, Users.Show.Result[]>(command));
 }