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